Refined CSS
All checks were successful
Release / publish (push) Successful in 1m1s

This commit is contained in:
Gian Breitenstein
2024-10-03 17:49:37 +02:00
parent 2f7d1a03cb
commit 9d4f17e368
2 changed files with 23 additions and 16 deletions

View File

@@ -8,26 +8,25 @@
</head>
<link rel="stylesheet" href="style.css">
<body>
<h1>Pokemon catcher</h1>
<header>
<h1>Randomizer</h1>
</header>
<div class="labelcontainer">
<label>Chance</label>
<input type="number" id="Chance" name="Chance" min="10">
<input type="number" id="Chance" name="Chance" min="10" placeholder="Chance (at least 10)">
</div>
<div class="labelcontainer">
<label>Multiplicator</label>
<input type="number" id="Multiplicator" name="Multiplicator" min="1" max="3">
<input type="number" id="Multiplicator" name="Multiplicator" min="1" max="3" placeholder="Multiplicator (1-3)">
</div>
<div class="labelcontainer">
<label>name</label>
<input type="text" id="name" maxlength="15">
<div class="labelcontainer">
<input type="text" id="name" maxlength="15" placeholder="Name (optional)">
</div>
<div>
<input type="button" onclick="calcChanche()" value="Generate">
<input type="button" onclick="calcChanche()" value="Go">
</div>
<p id="won"></p>
<div>