webs/APMC/index.html

49 lines
2.0 KiB
HTML
Raw Normal View History

2022-10-26 17:22:44 +09:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>APMC</title>
</head>
<body>
<h1>APPLE PER MAN CALCULATOR</h1>
<h2>INPUT THESE NUMBER ; YOU CAN USE A NEGATIVE NUMBER</h2>
<label>INPUT THE NUMBER OF APPLE<br>
<input type="number" id="goki" name="goki"><br>
</label><label>INPUT THE NUMBER OF POPULATION<br>
<input type="number" id="buri" name="buri"><br><br>
</label>
<button id="calcul">CALCULATE</button>
<table border="1" style="color:red; border-collapse:collapse; border-width:5px; margin-top:5vh;">
<tr>
<th>apple</th>
<td style="text-align:right;" id="apu">
</td>
</tr><tr>
<th>population</th>
<td style="text-align:right;" id="popu">
</td>
</tr><tr>
<th>APM</th>
<td style="text-align:right;" id="apm">
</td>
</tr>
</table>
<h2>POVERTY LEVELS BY APM</h2>
<table>
<tr><th>APM≦0</th><td style="text-align:right">grinding poverty</td></tr>
<tr><th>0&lt;APM≦1</th><td style="text-align:right">normal poverty</td></tr>
<tr><th>1&lt;APM≦10</th><td style="text-align:right">honorable poverty</td></tr>
<tr><th>10&lt;APM≦100</th><td style="text-align:right">little rich</td></tr>
<tr><th>100&lt;APM≦1000</th><td style="text-align:right">normal rich</td></tr>
<tr><th>1000&lt;APM</th><td style="text-align:right">extreme rich</td></tr>
</table>
<h2>THE ORIGIN OF THE APMC</h2>
<p>Apple Per Man Calculator, The APMC was developed by Qrhlhphp in order to show you the nature of poverty.</p>
2022-11-15 08:50:52 +09:00
<p>21st century is filled with lots of poverty. It made us injure each other, and wars caused have made our poverty furthermore terrible.</p>
2022-11-16 08:37:59 +09:00
<p>You have thoughts that it is very difficult to solve the issue of poverty, which are all wrong; it is not a complex thing but a obvious thing.</p>
2022-10-26 17:22:44 +09:00
<p>It is natural that you should distrust my words. But first try the APMC. You will find the nature of poverty immediately.</p>
</body>
<script src="main.js"></script>
</html>