52 lines
1.3 KiB
HTML
52 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="style.css">
|
|
<link href="https://fonts.googleapis.com/css2?family=Titillium+Web&display=swap" rel="stylesheet">
|
|
<link rel="icon" type="img/png" href="favicon.png">
|
|
<title>Randomize App</title>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<header>
|
|
<h1>
|
|
Randomizer app
|
|
</h1>
|
|
</header>
|
|
|
|
<div id="grid">
|
|
|
|
<div class="box1">
|
|
<h2>
|
|
Add item to randomize
|
|
</h2>
|
|
<input id="input" autocomplete="off"><br>
|
|
<p id="inputError"></p>
|
|
<button type="submit" id="add">Add item</button>
|
|
</div>
|
|
|
|
<div class="box2">
|
|
<h2>List of items:</h2>
|
|
<ol id="itemlist">
|
|
</ol>
|
|
</div>
|
|
|
|
<div>
|
|
<h2 class="result">
|
|
Result:
|
|
</h2>
|
|
<h3 id="result"></h3>
|
|
<button id="submit">Randomize</button>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<button id="reset">Reset</button>
|
|
<script src="script.js"></script>
|
|
</body>
|
|
|
|
</html> |