-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
154 lines (130 loc) · 4.17 KB
/
Copy pathindex.html
File metadata and controls
154 lines (130 loc) · 4.17 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
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<html>
<head>
<title>Devil Ninja Practice</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
}
.header {
overflow: hidden;
background-color: #f1f1f1;
padding: 20px 10px;
}
.header a {
float: left;
color: black;
text-align: center;
padding: 12px;
text-decoration: none;
font-size: 18px;
line-height: 25px;
border-radius: 4px;
}
.header a.logo {
font-size: 25px;
font-weight: bold;
}
.header a:hover {
background-color: #ddd;
color: black;
}
.header a.active {
background-color: dodgerblue;
color: white;
}
.header-right {
float: right;
}
.footer {
overflow: hidden;
background-color: #f1f1f1;
padding: 20px 10px;
text-align: center;
}
@media screen and (max-width: 500px) {
.header a {
float: none;
display: block;
text-align: left;
}
float: none;
}
}
</style>
</head>
<body>
<div class="header">
<a href="#default" class="logo">DEVIL NINJA</a>
<div class="header-right">
<a class="active" href="/html/index.html">Home</a>
<a href="/html/SignUP.html">Sign UP Form</a>
<a href="/html/UserForm.html">User Form</a>
<a href="/html/hello.html">Hello</a>
<a href="/html/form.html">Form</a>
<a href="/html/readme.md">Read Me</a>
</div>
</div>
<h1 align="center">Hello All. I am Devil Ninja <br> And this is my new html website.</h1>
<h2 align="center"> I am learning how to create forms with tables in this file</h2>
<form action="www.google.com">
<table border="1" align="center">
<thead>
<tbody style="background-color:#cf1b1b">
<tr>
<td>user Form
</td>
<td>
</td>
</div>
</tr>
</tbody>
</thead>
<tbody>
<tr>
<tbody>
<td><label>First Name:</td>
<td><input type="text" name="First Name" placeholder="First Name" required></label></td>
</tr>
</tbody>
<tr>
<td><label>Last Name: </td>
<td><input type="text" name="Last Name" placeholder="Last Name" required></label></td>
</tr>
<tr>
<td><label>Email id: </td>
<td><input type="email" name="Email" placeholder="Enter Email Address" required></label></td>
</tr>
<tr>
<td><label>Password </td>
<td><input type="email" name="Password" placeholder="Enter your Password" pattern="[a-zA-Z]{.0,9}8"
required title="Pura Likh"></label></td>
</tr>
<tr>
<td><label>Gender</label></td>
<td><label>Male<input type="radio" name="Gender" value="Male"></label>
<label>Female<input type="radio" name="Gender" value="Female"></label>
<label>Other<input type="radio" name="Gender" value="Other"></label>
</td>
</tr>
<tr>
<td></td>
<td><label><input type="checkbox" name="Check">I accept the T&C</label>
<label><input type="reset" name="Reset"></label>
<label><input type="submit" name="Submit"></label>
</td>
</tr>
</tbody>
</table>
</form>
<div class="footer">
<p>
Copyright © 2021. All rights reserved
</p>
</div>
</body>
</html>