-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.HTML
149 lines (139 loc) · 4.21 KB
/
index.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<!DOCTYPE html>
<html>
<head>
<title>HTML cheat sheet</title>
</head>
<boby>
<a href="blog.html">go to blog</a>
<hr>
<!--headings -->
<h1>heading one</h1>
<h2>heading two</h2>
<h3>heading three</h3>
<h4>heading four</h4>
<h5>heading five</h5>
<h6>heading six</h6>
<!--paragraph -->
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor <strong> incididunt ut labore</strong> dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud <em>exercitation ullamco</em> laboris nisi ut aliquip ex ea commodo
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</p>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit,<a href="http://google.com" target="_blank">sed do eiusmod</a>
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</p>
<!--lists-->
<ul>
<li>list item 1</li>
<li>list item 2</li>
<li>list item 3</li>
<li>list item 4</li>
</ul>
<ol>
<li>list item 1</li>
<li>list item 2</li>
<li>list item 3</li>
<li>list item 4</li>
</ol>
<!--table-->
<table>
<thead>
<tr>
<th>name</th>
<th>emial</th>
<th>age</th>
</tr>
</thead>
<tboby>
<tr>
<td>vennela</td>
<td>[email protected]</td>
<td>25</td>
</tr>
<tr>
<td>john</td>
<td>[email protected]</td>
<td>22</td>
</tr>
<tr>
<td>sabi</td>
<td>[email protected]</td>
<td>20</td>
</tr>
</tboby>
</table>
<!--forms-->
<br>
<hr>
<br>
<form action="process.php" method="post">
<div>
<label>first name</label>
<input type="text" name="first name" placeholder="enter first name">
</div>
<br>
<div>
<label>last name</label>
<input type="text" name="last name">
</div>
<br>
<div>
<label>Email</label>
<input type="email" name="Email">
</div>
<br>
<div>
<label>message</label>
<textarea name="message"></textarea>
</div>
<br>
<div>
<label>gender</label>
<select name="gender">
<option value="male">male</option>
<option value="female">female</option>
<option value="others">others</option>
</select>
</div>
<br>
<div>
<label>age:</label>
<input type="number" name="age"
value="30">
</div>
<br>
<div>
<label>birthday:</label>
<input type="date" name="birthday">
</div>
<br>
<input type="submit" name="submit" value="submit">
</form>
<!--button-->
<button>click me</button>
<!--image-->
<a href="images/sample.jpg">
<img src="images/sample.jpg" alt="my sample image" width="150">
</a>
<!--quotations-->
<blockquote cite="http://quotemedia.com">
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</blockquote>
<p>the <abbr title="world wide web">wwww</abbr> is awesome</p>
<p><cite>HTML crash course</cite> by brad</p>
<div style="margin-top:500px"></div>
</boby>
</html>