-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlevel6.html
More file actions
56 lines (46 loc) · 2.23 KB
/
level6.html
File metadata and controls
56 lines (46 loc) · 2.23 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
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 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">
<!--linking css file -->
<link rel="stylesheet" href="/css/level6.css">
<link rel="stylesheet" href="/css/global.css">
<!-- Font linking -->
<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=Baloo+Bhai+2&display=swap" rel="stylesheet">
<title>Level 6</title>
<noscript>Enable Java Script to view this page</noscript>
</head>
<body>
<nav class="navbar">
<img id="ok" src="./assets/ee.png" alt="logo">
<h1 class="heading-primary">Level <span>6</span> </h1>
</nav>
<div class="container">
<div class="box">
<h1> Win <span class="yellow">OR</span><span class="red"> DeadEnd</span> Round</h2>
<br>
<h2>It's not win or learn Always. Sometimes, it's Win Or Die</h2>
<div class="ubox">
<!-- <p>Use the given links to find the clue to the next page.</p> -->
<ul>
<li><a href="/deadend.html" class="link" target="_blank"> Link-1</a></li>
<li><a href="/lol.html" class="link" target="_blank"> Link-2</a></li>
<li><a href="#" class="link" target="_blank"> Link-3</a></li>
<li><a href="https://www.instagram.com/coding_memes__/" class="link" target="_blank"> Link-4</a></li>
</ul>
<p>Sometime deep dive into source, will lead you to Goal</p>
<div id="show">
View Source Code
</div>
<!-- go to winner.html -->
<!-- This whole page got no clue go back to the previous page and find clue there 😂😂 -->
</div>
</div>
</div>
</body>
<script src="/js/level5.js"></script>
</html>