-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlevel1.html
More file actions
55 lines (43 loc) · 1.72 KB
/
level1.html
File metadata and controls
55 lines (43 loc) · 1.72 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
<!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/level1.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>Level1</title>
<noscript>Enable Java Script to view this page</noscript>
</head>
<body>
<nav class="navbar">
<img id="ok" src="./assets/ee.png" alt="logo" width="60vw" height="60vh" style="float: left;">
<h1 class="heading-primary">Level <span>1</span> </h1>
</nav>
<div class="container">
<div class="box">
<div class="inBox">
<p>The task is to guess a famous Hollywood movie</p>
<li>Hint1: The background image used at this webpage</li>
<li>Hint2: Some chracter's name such as:</li>
<ul>
<li>Hogwarts</li>
<li>Sirius</li>
<li>Hagrid </li>
</ul>
<li>Tips: Answer box is transparent in color, find it too.</li>
<div class="center">
<input type="text" class="transparent btnn" placeholder="Enter Movie Name here">
<button class="btnn" id="btn">Submit</button>
</div>
</div>
</div>
</div>
</body>
<script src="/js/level1.js"></script>
</html>