-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgenerate_buttons.html
More file actions
35 lines (30 loc) · 1.1 KB
/
generate_buttons.html
File metadata and controls
35 lines (30 loc) · 1.1 KB
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
33
34
35
<!DOCTYPE html>
<html>
<head>
<title>Code Test - Buttons</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="css/site.css" media="all" />
</head>
<body>
<!-- main -->
<div class="main-layout wrapper">
<div class="main-container teal border-radius">
<div class="p-1em">
<nav>
<a id="homeLink" class="btn std_button" href="index.html">Back to Home</a>
</nav>
<input id="generate_buttons" type="button" class="btn std_button float-lt half-space" value="Add 5 Buttons" />
<input id="test_generate_buttons" type="button" class="btn std_button float-rt half-space" value="Test Buttons" />
<div class="clear"></div>
<div id="output">
</div>
</div>
</div>
</div>
<!-- main -->
<script src="js/site.js" type="text/javascript"></script>
<script src="js/buttons.js" type="text/javascript"></script>
<script src="js/buttons.test.js" type="text/javascript"></script>
</body>
</html>