forked from rlavinsh/chatgpt_workshop-_code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (58 loc) · 2.14 KB
/
index.html
File metadata and controls
64 lines (58 loc) · 2.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>we are learning html</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<h2>Registration form</h2>
<!-- <h1>Lorem, ipsum.</h1>
<h2>Lorem, ipsum dolor.</h2>
<h3>Lorem ipsum dolor sit.</h3>
<h4>Lorem ipsum dolor sit.</h4>
<h5>Lorem ipsum dolor sit amet.</h5>
<h6>Lorem ipsum dolor sit amet consectetur.</h6> -->
<!-- Paragraph tag -->
<!-- <p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Nobis, ea tempora
natus nulla sapiente at placeat ipsam sed iste modi.
</p> -->
<!-- <form>
<label for="username">Enter your mail id:</label>
<input type="email" name="username" placeholder="Enter your mail id" />
<br /><br />
<label for="password">Enter your password:</label>
<input type="text" placeholder="Enter your password" name="password" />
</form> -->
<!-- Registraion form -->
<label for="firstname">FirstName:</label><br />
<input type="text" id="firstname" name="firstname" />
<br /><br />
<label for="lastname">LastName:</label><br />
<input type="text" id="lastname" name="lastname" />
<br /><br />
<label for="email">Email:</label><br />
<input type="email" id="email" name="email" />
<br /><br />
<label for="password">Password:</label><br />
<input type="password" id="password" name="password" />
<br /><br />
<label for="gender">Gender:</label><br />
<label for="male">Male</label>
<input type="radio" id="male" name="gender" value="male" />
<label for="female">Female</label>
<input type="radio" id="female" name="gender" value="female" />
<label for="other">Other</label>
<input type="radio" id="other" name="gender" value="other" />
<br><br>
<select name="country">
<option value="india">India</option>
<option value="australia">Australia</option>
<option value="srilanka">SriLanka</option>
</select>
<br /><br />
<button type="submit">submit</button>
</body>
</html>