-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDay2.html
36 lines (34 loc) · 1.11 KB
/
Day2.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
<!DOCTYPE html>
<HTML>
<head>
<title>My HTML basics</title>
</head>
<body>
<h2>Creating a webpage using HTML</h2>
<p>We can do it by creating a file
with html extension file (For eg:)</p>
<pre>
HTML
head
title My HTML /title
/head
body
h2 Creating a webpage using html /h2
/body
/HTML
</pre>
<p>Register below to learn further</p>
<form>
<label for="Name">Name</label>
<input type="text" placeholder="First Name" id="Name">
<input type="text" placeholder="Last Name" maxlength="5"><br>
<label for="emailid">Email id:</label>
<input type="email" placeholder="Enter you email" id="emailid"><br>
<label for="pwd">Password</label>
<input type="password" placeholder="Enter your password" id="pwd"><br>
<label for="dob">Date of birth</label>
<input type="date" id="dob"><br>
<input type="submit" value="Enter">
</form>
</body>
</HTML>