-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (60 loc) · 2.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Quiz-App</title>
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css" />
</head>
<body>
<div class="image"></div>
<div class="text"><span>Q</span>uiz<span></span></div>
<div class="text" id="two"><span>App</span></div>
<div class="main-container">
<div class="inner-container">
<h1 class="question">Q. Question Comes Here!!</h1>
<ul>
<li>
<input type="radio" name="answer" id="ans1" class="answer" />
<label for="ans1" id="option1">Option</label>
</li>
<li>
<input type="radio" name="answer" id="ans2" class="answer" />
<label for="ans2" id="option2">Option</label>
</li>
<li>
<input type="radio" name="answer" id="ans3" class="answer" />
<label for="ans3" id="option3">Option</label>
</li>
<li>
<input type="radio" name="answer" id="ans4" class="answer" />
<label for="ans4" id="option4">Option</label>
</li>
</ul>
<button id="submit">Submit</button>
<div id="showScore" class="score"></div>
</div>
</div>
<footer class="flex" id="footer">
<div class="copy">Made with <span class="heart">❤️</span> By <a href="https//www.instagram.com/coder_mo">coder_mo</a></div>
<div class="social">
<a class="ig" href="https//www.instagram.com/coder_mo" target="_blank">
<i class="fa-brands fa-instagram"></i>
</a>
<a class="fb" href="https//www.facebook.com/mosh3eb" target="_blank">
<i class="fa-brands fa-facebook"></i>
</a>
<a class="wa" href="https://wa.me/201030191239" target="_blank">
<i class="fa-brands fa-whatsapp"></i>
</a>
<a class="ph" href="tel:+201030191239" target="_blank">
<i class="fa-solid fa-phone"></i>
</a>
</div>
</footer>
</div>
<script src="js/script.js"></script>
</body>
</html>