-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
85 lines (72 loc) · 2.25 KB
/
index.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!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">
<title>Index</title>
<link rel="stylesheet" href="style.css">
<script src="app.js"></script>
<!-- <script>
document.onkeydown = function (e) {
if (event.keyCode == 123) {
return false;
}
if (e.ctrlKey && e.shiftKey && (e.keyCode == 'I'.charCodeAt(0) || e.keyCode == 'i'.charCodeAt(0))) {
return false;
}
if (e.ctrlKey && e.shiftKey && (e.keyCode == 'C'.charCodeAt(0) || e.keyCode == 'c'.charCodeAt(0))) {
return false;
}
if (e.ctrlKey && e.shiftKey && (e.keyCode == 'J'.charCodeAt(0) || e.keyCode == 'j'.charCodeAt(0))) {
return false;
}
if (e.ctrlKey && (e.keyCode == 'U'.charCodeAt(0) || e.keyCode == 'u'.charCodeAt(0))) {
return false;
}
if (e.ctrlKey && (e.keyCode == 'S'.charCodeAt(0) || e.keyCode == 's'.charCodeAt(0))) {
return false;
}
}
</script> -->
</head>
<!-- <body oncontextmenu="return false;"> -->
<body>
<header>
<div class="navbar">
<ul>
<li><a href="blogs.html">Blogs</a></li>
<li><a href="twitter.html">Twitter Archives</a></li>
<li><a href="krishna.html">Hare Krishna</a></li>
</ul>
</div>
</header>
<h1>HTML FORM</h1>
Hare Krishna
<form action="index.html" method="post">
<fieldset class="frm">
<legend>Sign Up Form</legend>
<label class="usr" for="name">Username</label>
<input class="username" type="text" placeholder="Enter your username" id="name" name="name" required><br>
<label class="pss" for="pass">Password</label>
<input class="password" type="password" placeholder="Enter your password" id="pass" name="pass"
required><br>
<input class="sub" type="submit" onclick="validate()" value="Login">
</fieldset>
</form>
</p>
<h4>
<p>
Username- harekrishna<br>
Password- 123456789<br>
</p>
</h4>
<button class="btnc"><a href="article.html">Click on me to go the article page!</a></button>
<!-- <form action="#">
<select name="color">
<option value="red">Red</option>
</select>
</form> -->
<article>Jai Shree Krishna</article>
</body>
</html>