This repository has been archived on 2024-09-11. You can view files and clone it, but cannot push or open issues or pull requests.
Files
IT2/html/tasks/chapter_5/task11_tables/oppgave.html
2020-01-29 12:56:06 +01:00

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>