-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomplete.html
105 lines (101 loc) · 4.02 KB
/
complete.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="This is a tutorial">
<meta name="author" content="Deepa Das">
<meta name="keyword" content="HTML, tutorial">
<title>Document</title>
<style>
.table-heading{
color: red;
}
.form{
color: blue;
}
#main-heading{
color:darkmagenta;
}
img{
height: 200px;
}
.headings{
background-color: aqua ;
color: black;
}
.span{
background-attachment: pink;
color: brown;
}
body{
background-color: rgb(236, 255, 27);
}
</style>
</head>
<body>
<div class="headings">
<h1 id="main-heading">This is heading</h1>
<h2>hello</h2>
<h3>hello</h3>
<h4>hello</h4>
<h5>hello</h5>
<h6>hello</h6>
</div>
<p>Lorem ipsum dolor sit, <span> amet </span>consectetur adipisicing elit. Consequatur expedita quaerat quas obcaecati quia, accusantium culpa natus commodi tempore praesentium optio,<br><br> omnis beatae sequi rerum sit, minus vero minima. br
Corporis.</p>
<a href="https://google.co.in" target="_blank">Google link</a>
<img src="Untitled.png" alt="sign in">
<h2 class="table-heading">table</h2>
<table border="1" >
<thead>
<th>first name</th>
<th>last name</th>
</thead>
<tbody>
<tr>
<td>Shreedevi</td>
<td>singh</td>
</tr>
<tr>
<td>Swati</td>
<td>singh</td>
</tr>
<tr>
<td>shivangi</td>
<td>sharma</td>
</tr>
<tr>
<td>Annu</td>
<td>Das</td>
</tr>
</tbody>
</table>
<h2 class="form">form</h2>
<form>
<label for="username">username</label>
<input type="text" name="" id="username" placeholder="username"><br><br>
<label for="password">password</label>
<input type="text" name="" id="password" placeholder="password">
<p>select your gender</p>
<label for="male">male</label>
<input type="radio" name="gender" id="male"> <br>
<label for="female">female</label>
<input type="radio" name="gender" id="female"> <br>
<label for="country">country</label>
<select name="" id="country">
<option value="India">India</option>
<option value="Nepal">Nepal</option>
<option value="Pakistan">Pakistan</option>
<option value="Bhutan">Bhutan</option>
</select>
<p>type below</p>
<textarea name="" id="" cols="30" rows="10" placeholder="write about you"></textarea>
<input type="submit" value="Sign in">
<p>Lorem ipsum dolor, sit amet consectetur adipisicing elit. Iusto quo sequi vel illum magnam, libero inventore tenetur et repellat? Culpa possimus maiores magnam, quis perspiciatis officiis praesentium vero corporis dolores.</p>
</form>
<p>Lorem, ipsum dolor sit amet consectetur <em>adipisicing elit</em>. Aliquid distinctio, labore vel non odit, velit consequuntur maiores quisquam neque sed accusamus sint pariatur nemo possimus, aperiam enim illum nobis? Aperiam!
</p><p>This is less symbol < ©</p>
</body>
</html>