forked from tons0trees/pixelate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (28 loc) · 853 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html>
<head>
<title>Pixelate</title>
<!-- This gets us our fun 8-bit font from Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Press+Start+2P" rel="stylesheet">
<!-- loads our own CSS file -->
<script src="script.js" defer></script>
<link rel="stylesheet" href="/style.css" />
</head>
<body>
<h1>Pixelate</h1>
<div>
<button id='add-row'>Add a row</button>
<select>
<option value="red">Red</option>
<option value="blue">Blue</option>
<option value="green">Green</option>
<option value="yellow">Yellow</option>
</select>
<button id="clear">Clear</button>
</div>
<table id="mainTable">
</table>
</body>
<!-- loads our JavaScript file -->
<script type="text/javascript" src="/script.js"></script>
</html>