-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (24 loc) · 802 Bytes
/
index.html
File metadata and controls
32 lines (24 loc) · 802 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
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html>
<head>
<title>jQuery Project</title>
<!-- CSS reset -->
<link href="css/cssreset.css" type="text/css" rel="stylesheet">
<!-- Add Custom CSS -->
<link href="css/custom.css" type="text/css" rel="stylesheet">
</head>
<body>
<div id="wrapper">
<div class="user-input">
<form>
Squares per Side:
<input type="text" class="grid_size" value="16" />
<button type="submit">Update Grid</button>
</form>
</div><!-- end user-input -->
</div><!-- end wrapper -->
<!-- Add jQuery -->
<script src="js/jquery.js"></script>
<script src="js/custom.js"></script>
</body>
</html>