forked from tiy-orl/front-end-quiz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (56 loc) · 1.58 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Quiz</title>
<link rel="stylesheet" href="./main.css">
<style>section {
display: inline-block;
width: 49%;
vertical-align: top;
}
</style>
</head>
<body>
<div id="container">
<header>
<h1>The Quiz Page</h1>
<img src="https://media.giphy.com/media/citBl9yPwnUOs/giphy.gif">
</header>
<nav>
<ul>
<li><a href="#">About the Quiz</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
<input id="search" placeholder="Search the site"/>
</nav>
<section>
<h3>Buttons</h3>
<ul>
<li><button data-size="100" class="smaller">Small Murray</button></li>
<li><button data-size="400" class="larger">El Murray Grande</button></li>
<li><button data-size="1000" class="evenlarger">El Murray Mas Grande</button></li>
</section>
<section>
<h3>Pictures</h3>
<p><img src=""></p>
</section>
<section>
<h3>Prime Number Button</h3>
<button class="prime">Click</button>
<span class="number"></span>
</section>
</div>
<ul id="githubAvatars">
</ul>
<footer id="copyright">
<p>© The Iron Yard 2017</p>
</footer>
<!--<script src="github.js"></script>
<script src="prime.js"></script>
<script src="./index.js"></script>
<script src="./fibonacci.js"></script>
<script src="./fizzbuzz.js"></script>-->
<script src="./movementToCoordinates.js"></script>
</body>
</html>