Initial commit

This commit is contained in:
Oskar-Mikael
2021-01-26 16:58:56 +01:00
commit 22d623e9e3
4 changed files with 145 additions and 0 deletions

52
index.html Normal file
View File

@@ -0,0 +1,52 @@
<!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>