30 lines
952 B
HTML
30 lines
952 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<title>Oppgave 11</title>
|
|
<link rel="stylesheet" href="../../../../resources/css/main.css">
|
|
<script async src="./script.js"></script>
|
|
</head>
|
|
<body>
|
|
|
|
<h1>Oppgave 11</h1>
|
|
|
|
<div class=center>
|
|
<div class="inline">
|
|
Lag <input type="number" id="amount" value="0" min="0" max="999"> tilfeldige tall mellom 0 og <input type="number" id="range" value="0" min="0">
|
|
<button id="reload">Reload</button>
|
|
</div>
|
|
|
|
<table id="table">
|
|
<thead>
|
|
<tr>
|
|
<th>Tall</th>
|
|
</tr>
|
|
</thead>
|
|
</table>
|
|
</div>
|
|
</body>
|
|
</html> |