-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (72 loc) · 3.01 KB
/
index.html
File metadata and controls
73 lines (72 loc) · 3.01 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
<!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>Document</title>
<link rel="stylesheet" href="exeternal.css">
<style>
/* id */
#int{
background-color:rgb(161, 161, 238);
}
/* class
.int{
background-color:rgb(161, 161, 238);
}
*/
p{
color: chocolate;
font-size: 80px;
}
</style>
</head>
<body>
<marquee><H1><i>Information Table</i></H1><br></marquee>
<a href="https://www.codewithharry.com/" target="parent" > click me</a>
<br><img src="C:\Users\Admin\Downloads\HTML\iit photo.jpg" alt="harry's website"><br>
<!--post:
Get:-->
<h1 style="background-color: aquamarine; color:blue; text-align: center;">Registration Form</h1>
<p id="int">Internal style</p>
<h3 class="one"> External Style</h3>
<h3 id="two">This is css </h3>
<form method="post" class="">
First name: <input type="text" name="fname" placeholder="Enter the first name"><br>
Last name: <input type="text" name="lname" placeholder="Enter the last name"><br>
Age: <input type="number" name="Age" placeholder="Enter the age"><br>
Date of birth: <input type="datetime-local" name="dob"><br>
Gender: <br>
male: <input type="radio" name="Gender" value="male">
Female: <input type="radio" name="Gender" value="Female">
other: <input type="radio" name="gender" value=" other">
<br>
<Select>subject:<br>
<optin value=""> Select subject</optin>
<option value="math">Math</option>
<option value="english">English</option>
<option value="bio">bio</option>
</select>
<br>
Hobbies:<br>
Dancing:<input type="checkbox" name="Hobbies" value="Dancing">
singing:<input type="checkbox" name="hobbies" value="singing">
Drawing:<input type="checkbox" name="hobbies" value="drawing">
Reading:<input type="checkbox" name="hobbies" value="Reading">
<br>
Qulification:<br>
10 Stander<input type="" name=" std" placeholder="Enter the marks">
12 Stander<input type="" name="std" placeholder="Enter the marks"><br>
Email <input type="email" name="email" placeholder="Enter the email">
Mobile number <input type="" name="number" placeholder="Enter the number">
<br>
Passsword <input type="password" name="password" placeholder="Enter the password">
Address <input type="address" name="address" placeholder="Enter the address" cols="20">
<br>
<input type="submit" name="send deta">
<input type="submit" value="back">
<input type="submit" value="helf">
</form>
</body>
</html>