-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlevel5.html
59 lines (47 loc) · 2.07 KB
/
level5.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
<!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/level5.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 5</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>5</span> </h1>
</nav>
<div class="container">
<div class="box">
<h2><span class="yellow">Brain</span><span class="red">Teaser</span></h2>
<br>
<p>It will check your mathematics, visual abilities, Geometrical Interpretation</p>
<hr>
<div class="wrapper">
<div class="left yellow">
<p>Can you count the number of circles that contain a black dot?</p>
<p>Hint: You can go to this page-> <a href="#" target="_blank"><span class="blue">Page</span> </a> </p>
</div>
<div class="right">
<img src="/assets/mathsPuzzle.jpg" alt="">
</div>
</div>
<div class="submit-section">
<div class="center">
<input type="text" class="transparent" placeholder="Enter you answer here">
<button class="btn" >Submit</button>
</div>
</div>
</div>
</div>
</body>
<script src="/js/level5.js"></script>
</html>