-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHTML_File.html
91 lines (88 loc) · 3.06 KB
/
HTML_File.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<title>HTML/CSS Test Page For Web Designers</title>
<body>
<h1>
<b> H1 = Heading 1 </b>
</h1>
<p> This is a paragraph (<P>).IMHO, it makes sense to have vertical spacing between header elements and paragraphs.</p>
<div>
<p>This is also a paragraph</p>
</div>
<div>
<p>
Line 1: This is a paragraph wiht four lines but:
</p>
<p>
Line 2: It has self-terminating
</p>
<p>
Line 3: line breaks (<br/>) at
</p>
<p>
Line 4: the end of every line.
</p>
<br>
You might want to use the <br/> tag for multi-line list items like this:
</div>
<div>
<p>
<b>Related Posts:</b>
<ul>
<li>
<a href="https://www.goodreads.com/book/show/15254067-html-4-01-specification">W3C Recommendation 24 December 1999 (NB: visited/clicked links (like this one) and unlisted/unclicked links should look different)</a>
<br>
HTML 4.01 Specification
</li>
<li>
<a href="https://www.w3schools.com/html/html_examples.asp">HTML Demo Page (NB: visited/clicked links and unlisted/unclicked links (like this one) should look different)</a>
<br>
by Andrew Bedno
</li>
<li>
<a href="https://amicadigital.com/everything-you-need-to-know-about-good-website-design-and-development/">Everything You Know About Website Design Is Right</a> (9/1/2004)
<br>
No it's not. Everything you know about website design is wrong.
</li>
<li>
<a href="https://www.giantpeople.com/453.html">Designing Good Internet Experiences</a> (1/2/1998)
<br>
The Internet will remain out of the reach of many consumers until computers are as easy to use as lamps.
</li>
</ul>
</p>
</div>
<div>
<h2>
<b>
H2 = Heading 2
</b>
</h2>
<p>
This is a paragraph. IMHO, it makes sense to have vetrical spacing between header elements and paragraphs.
<p>
This is also a paragraph.
</p>
</p>
</div>
<div>
<h3>
<b>
H3 = Heading 3
</b>
</h3>
<p>
This is a paragraph. IMHO, it makes sense to have vertical spacing between header elements and paragraphs.
<p>
This is also a paragraph.
</p>
</p>
</div>
</body>
</html>