-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathround2b.html
More file actions
33 lines (32 loc) · 1.5 KB
/
round2b.html
File metadata and controls
33 lines (32 loc) · 1.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Round 2</title>
<link rel="icon" href="logo.png" type="image/x-icon">
<meta name="description" content="Question 1 of CodeQuest">
<link rel="stylesheet" href="style.css">
<script src="https://www.gstatic.com/firebasejs/10.4.0/firebase-app-compat.js"></script>
<script src="https://www.gstatic.com/firebasejs/10.4.0/firebase-firestore-compat.js"></script>
</head>
<body>
<div class="logo-container">
<img class="vbit-logo" src="vbit-logo-white.png" alt="vbit logo">
<img class="cs-logo" src="IEEE-CS_LogoTM-white.png" alt="computer society logo">
<img class="sb-logo" src="white logo sb.png" alt="IEEE - VBIT SB">
</div>
<div class="question-container">
<div class="q1"><strong>Round 2</strong></div>
<div class="qst-1" id="description">Decode the binary form to uncover a clue.
Here the participants are provided with binary sentence , which they have to decode and reveal a clue. By successfully decoding it, participants can progress to the next challenge level.</div>
<div id="round2" class="qst-1">loading!!</div>
<input id="round-2" type="text" required placeholder="Write your solution here!!">
<p id="incorrect"></p>
<div id="submit">Submit</div>
</div>
<script src="data.js"></script>
<script src="main.js"></script>
<script src="round2b.js"></script>
</body>
</html>