-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (59 loc) · 1.91 KB
/
Copy pathindex.html
File metadata and controls
66 lines (59 loc) · 1.91 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>HTML Practice</title>
<link rel="stylesheet" href="css/style.css">
<style>
h2 {
color: aqua;
}
</style>
</head>
<body>
<h1 style="color: red; margin-left: 1000px">This is heading 1</h1>
<h2>This is heading 2</h2>
<p> Paragraph Of the document</p>
<div class="myContent">
This is my content, and here i am going to define css in class.
<div class="spanContent">This is span content</div>
<!-- <img src="image/thumb_49B02312-9F60-4C93-82E9-4BBB337E0AFA.jpeg" class="imageContent">-->
</div>
<div class="form">
<h2> Avengers Form</h2>
<form>
<label>Name</label>
<input type="text" value="" name="name"><br/><br/>
<label>Marital Status</label>
<select name="marital_status">
<option value="1">Single</option>
<option value="2">Married</option>
<option value="3">Widow</option>
</select> <br/>
<label>Interests</label><br/>
<label>Cricket</label>
<input type="checkbox" name="cricket" value="cricket">
<label>TV</label>
<input type="checkbox" name="tv" value="tv">
<label>Movie</label>
<input type="checkbox" name="movie" value="movie"> <br/>
<label>Gender</label> <br/>
<label>Male</label>
<input type="radio" name="gender">
<label>Female</label>
<input type="radio" name="gender"> <br/>
<label>Address</label>
<textarea name="address" rows="10"></textarea> <br>
<label>Password</label>
<input type="password" name="password"> <br/>
<label>Hobbies</label>
<select multiple>
<option>Reading Books</option>
<option>Cycling</option>
<option>Playing football</option>
<option>Watching Movies</option>
</select>
</form>
</div>
</body>
</html>