forked from jfarmer/milestones-html
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstructure.html
More file actions
39 lines (35 loc) · 1.06 KB
/
structure.html
File metadata and controls
39 lines (35 loc) · 1.06 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>HTML MilesStones</title>
</head>
<body>
<h1>
This is the header using the h1 tag.
</h1>
<p>
In order seperate our website into different spaces, we can use
h1 in the part of our body to divide our website under headers.
from then on we can use p to create pargraphs of text in said headers.
</p>
<p>
This is a second paragraph, using another p header. Notice how it is spaced
automatically when you open and close a new p section.
</p>
<h2>
This is a header using the h2 tag.
</h2>
<p>
Inside header2, this is the first paragraph that is made using a new p tag.
Once again, it will be automatically spaced with another paragraph if a
new p tag is called. We will notice that the text in the header h2 is smaller
than the text in h1, because of the header hierarchy.
</p>
<p>
This is the new paragraph, made by calling on a new p tag after the former one has
been called.
</p>
</body>
</html>