-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmonkey.html
More file actions
47 lines (40 loc) · 1.86 KB
/
monkey.html
File metadata and controls
47 lines (40 loc) · 1.86 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
<!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/monkey.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 4</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>4</span> </h1>
</nav>
<div class="container" id="below">
<div class="box">
<p>Ques 1: How many words "english alphabet" consist ?</p>
<p>Ques 2:There are two ducks in front of a duck, two ducks behind a duck and a duck in the middle. How many ducks are there?</p>
<div class="submit-section">
<h2><span class="yellow"> Sum of both answers will be our final answer.</span></h2>
<br><br><br><br><br>
<div class="center" >
<input type="text" class="transparent" placeholder="Enter you answer here">
<button class="btn" >Submit</button>
</div>
</div>
</div>
</div>
<script src="https://www.gstatic.com/firebasejs/4.3.0/firebase.js"></script>
<script src="/js/config.js"></script>
<script src="/js/monkey.js"></script>
</body>
</html>