-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (73 loc) · 3.48 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>oop-quiz-app</title>
<!-- style and script resources -->
<link rel="stylesheet" href="styles.css" media="all">
<!--open graph meta tags for social sites and search engines-->
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="website" />
<meta property="og:title" content=" Opengraph content 25 char are best" />
<meta property="og:description" content=" #description." />
<meta property="og:url" content="" />
<meta property="og:site_name" content="" />
<meta property="og:image" content="images//hom-banner-compressed.jpg" />
<meta property="og:image:secure_url" content="images//hom-banner-compressed.jpg" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="660" />
</head>
<body>
<main class ="main-wrapper">
<div class="section-wrapper">
<section class="questions-box">
<h1 class="questions"></h1>
<h4 class="questions-tracker"> 1 of 5</h4>
</section>
<section class="progressBar">
<div class="progressBarInner"></div>
</section>
<section class="choices-box">
<p class="tagline">Make your pick</p>
<ul class="choices">
<!-- li tags created in inital markup, removed once JS code was added to
dynamically generate the li choices -->
<!-- <li class="choice">
<input id="choice1" type="radio" name="choice" class="input">
<label for="choice1" class="label">
<i></i>
<p>hello world</p>
</label>
</li>
<li class="choice">
<input id="choice2" type="radio" name="choice" class="input">
<label for="choice2" class="label">
<i></i>
<p>hello</p>
</label>
</li>
<li class="choice">
<input id="choice3" type="radio" name="choice" class="input">
<label for="choice3" class="label">
<i></i>
<p>hello</p>
</label>
</li>
<li class="choice">
<input id="choice4" type="radio" name="choice" class="input">
<label for="choice4" class="label">
<i></i>
<p>hi</p>
</label>
</li> -->
</ul>
</section>
<section class="buttons">
<button class="button buttonBordered next" >NEXT</button>
<button class="button buttonBordered restart" >RESTART</button>
</section>
</div>
</main>
<script src="../js/app.js" type="module"></script>
</body>
</html>