forked from iaac-macad-s1/lecture1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (21 loc) · 792 Bytes
/
index.html
File metadata and controls
24 lines (21 loc) · 792 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html>
<head>
<title>Example 2</title>
<!-- import css from external file -->
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!-- create sliders with starting values -->
<div id="ui">
<input id="x" name="x" type="range" min="1" max="20" step="1" value="10" oninput="makeRows()">
<label id="x_label" for="x">X: 10</label>
<input id="y" name="y" type="range" min="1" max="50" step="1" value="10" oninput="makeRows()">
<label id="y_label" for="y">Y: 10</label>
</div>
<!-- placeholder for table -->
<table id="table"></table>
<!-- import javascript from external file -->
<script src="script.js"></script>
</body>
</html>