-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.htm
53 lines (47 loc) · 1.9 KB
/
index.htm
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CodeHunt</title>
<link rel="stylesheet" href="style.css">
</head>
<script>
console.log("When someone looks at the page-source they find lot of clickable links, its really fun to see where a link takes you.You learn various new things.");
</script>
<body>
<section id= description>
<h1>HackIT</h1>
<div id ="msgContainer">
<code id = "msg"></code>
<!--Display of Text-->
</div>
<br>
<div id = input >
<form action="javascript:check()">
<label><strong>Password: </strong>
<input type="password" id = "passwordInput" placeholder="Enter the password">
</label>
<button id = "submitButton" type="submit">Submit</button>
</form>
<p id = 'warning'>
</p>
</div>
<div id = "belowText">
<p id = "hint">And make sure that your <strong><i>inspection</i></strong> of this page does not goes in vain as sometime the problem solves itself if we look into the <strong><i>source</i></strong> of it.</p>
<p id ="lastTextContainer">
<code id = "lastText"></code>
</p>
</div>
</section>
<footer>
<div id = logos>
<strong> D_Coder . Techquest . HackIt</strong><br>
<a href="https://www.instagram.com/d_coder_dtu/" target="_blank"><img id = instagramLogo src="logos/icon-04-512.png" alt="instagram logo"></a>
   
<a href = "https://www.linkedin.com/company/dcoder" target = "_blank"><img id = linkedinLogo src="logos/linkedin.png" alt="linkedin"></a>
</div>
</footer>
<script id = "check" src="scripts.js"></script>
</body>
</html>