-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
150 lines (129 loc) · 4 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
150
<!DOCTYPE html>
<html>
<head>
<title>HTML Cheat Sheet</title>
</head>
<body>
<a href="blog.html">Go to blog</a>
<!--headings-->
<h1>Heading One</h1>
<h2>Heading 2</h2>
<h3>h3</h3>
<h4>h4</h4>
<h5>h5</h5>
<h6>h6</h6>
<!--Paragraphs-->
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Dolore<strong> minima</strong> eius nihil voluptatibus incidunt
magnam expedita molestiae <em> aliquam</em> omnis facilis,
labore neque quia <a href ="http://google.com " target="_blank"> vitae corrupti</a>
eaque nulla fuga sed?
</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>Email</th>
<th>Age</th>
</tr>
</thead>
<tbody>
<tr>
<td>Brad</td>
<td>[email protected]</td>
<td>35</td>
</tr>
<tr>
<td>John</td>
<td>[email protected]</td>
<td>30</td>
</tr>
<tr>
<td>Sarah</td>
<td>[email protected]</td>
<td>25</td>
</tr>
</tbody>
</table>
<br>
<hr>
<br>
<!--Forms-->
<form action="process.php" method="GET">
<div>
<label>First Name</label>
<input type="text" name="firstName"
placeholder="enter first name">
</div>
<br>
<div>
<label>Last Name</label>
<input type="text" name="lastName">
</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>
</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>
<!--buttons-->
<button>Click Me</button>
<br>
<!--images-->
<a href="download.jpeg">
<img src="download.jpeg" alt="Sample" width="200" height="200">
</a>
<br>
<!--Quotations-->
<blockquote cite="http://traversymedia.com">
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Reiciendis deserunt commodi molestiae dolorum quas debitis
dolore deleniti, necessitatibus ipsum aperiam impedit
quisquam molestias consequatur consequuntur saepe a vitae
eaque maxime.
</blockquote>
<p>The <abbr title="world wide web">WWW</abbr> is cool</p>
<P><cite>HTML Crash course</cite> by Brad</P>
<div style="margin-top: 500px"></div>
</body>
</html>