-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhtml-example.html
79 lines (70 loc) · 1.89 KB
/
html-example.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>This is a page title</title>
<link rel="icon" type="image/x-icon" href="/images/favicon.ico">
</head>
<body>
<div>
<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>
<p>This is a paragraph.</p>
<hr><!-- Horizontal Rule: is a horizontal break, used to separate content -->
<p>
<b> Bold text </b> </div>
</br><!-- Break: line break within a block of text-->
<strong> Important text </strong> </br>
<i> Italic text </i> </br>
<em> Emphasised text </em> </br>
<mark> Marked text </mark> </br>
<small> Smaller text </small> </br>
<del> Deleted text </del> </br>
<ins> Inserted text </ins> </br>
<sub> Subscript text </sub> </br>
<sup> Superscript text </sup> </br>
</p>
<a href="url">link text</a> </br>
<img src="pic_trulli.jpg" alt="Italian Trulli">
<p style="background-image: url('img_girl.jpg');">
<table>
<tr>
<th>Company</th>
<th>Contact</th>
<th>Country</th>
</tr>
<tr>
<td>Alfreds Futterkiste</td>
<td>Maria Anders</td>
<td>Germany</td>
</tr>
<tr>
<td>Centro comercial Moctezuma</td>
<td>Francisco Chang</td>
<td>Mexico</td>
</tr>
</table>
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
<ol>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>
<form>
<label for="fname">First name:</label><br>
<input type="text" id="fname" name="fname"><br>
<label for="lname">Last name:</label><br>
<input type="text" id="lname" name="lname">
</form>
</div>
</body>
</html>