-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathquestion_page.html
86 lines (73 loc) · 2.96 KB
/
question_page.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
81
82
83
84
85
86
<!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>Question_Page</title>
<link rel="stylesheet" href="css/question_page.css">
<link rel="stylesheet" href="css/footer.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
</head>
<body>
<header class="header">
<nav class="navbar">
<div class="logo">
<img src="./assets/img/hc_logo.svg" alt="">
</div>
<div class="hackquest-title">
<ul class="nav-content">
<li class="nav-tags">HackQuest</li>
</ul>
</div>
</nav>
</header>
<div class="container">
<div class="wrapper">
<div class="label">
<h1>Level 1</h1>
</div>
<div class="pg">
<p>1/7</p>
</div>
</div>
<div class="questions">
<div class="tile">
<p>Question details here</p>
<p>Lorem ipsum dolor sit</p>
</div>
<form action="" class="answer">
<input type="text" name="" value="" placeholder="answer here"><br>
<input type="button" value="Submit">
</form>
</div>
</div>
<footer class='footer-body-section'>
<ul class="container">
<li class="footer-socials-wrapper">
<div class="footer-banner">
<img src="assets/img/hc_logo.svg" alt="Logo">
<a id="hc"><strong>Hack Club</strong></a>
</div>
<div class="footer-socials">
<ul>
<li><a href="https://hackclub.com/slack/"><img id="slack" src="assets/img/slack.svg" alt="slack Logo"></img></a></li>
<li><a href="https://github.com/HackclubVIT"><img id="github" src="assets/img/github.svg" alt="github Logo"></img></a></li>
<li><a href="https://www.instagram.com/hackclubvitc/?hl=en"><img id="insta" src="assets/img/insta.svg" alt="insta Logo"></img></a></li>
<li><a href="https://github.com/HackclubVIT"><img id="mail" src="assets/img/email.svg" alt="email Logo"></img></a></li>
</ul>
</div>
</li>
<div class="footer-links">
<p class="footer-link" id="phil"><a href='https://hackclub.com/philosophy/'>Philosophy</a></p>
<p class="footer-link"> <a href="https://hackclub.com">Community</a></p>
<p class="footer-link"><a href="https://hackclub.com/conduct/">HackClub Code of Conduct</a></p>
<p class="outro">Made with <img id="heart" src="assets/img/heart.svg" alt="Logo"></img>
by Students of Hack Club</p>
</div>
</ul>
</footer>
</body>
</html>