-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path05_Display_text.html
More file actions
45 lines (40 loc) · 1.36 KB
/
05_Display_text.html
File metadata and controls
45 lines (40 loc) · 1.36 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
40
41
42
43
44
45
<!--
Important Notes:-
Using Heading :
Working with block and inline elements.
Managing text breaking and while space.
Displayin reference text.
Heading : Heading genrally denote different sections of your document.
We have different levels of heading all the way from on H1 to an H6.
Denote Sections of the document:
H1 is the primary heading for the document.
- Should only appear once per page.
H2 - H6 are secondary headings
BLock Vs Inline Element:
Block element (eg. div):
1. Container to group other elements.
2. May contain block or inline elements.
Inline element (eg. span):
1. Conatainer for text
2. May contain other in line elements.
-->
<!DOCTYPE html>
<html lang="en">
<head>
<title>Webpage</title>
</head>
<body>
<!--
A span just simply lets you mark up a section of text to indicate
that this span of text is span of text is significant in some way.
-->
<span>Some Plain text<span id = "inner"> with inline text </span> included </span>
<!-- Heading From H1 to H6 -->
<h1>Hello!</h1>
<h2>Hello!</h2>
<h3>Hello!</h3>
<h4>Hello!</h4>
<h5>Hello!</h5>
<h6>Hello!</h6>
</body>
</html>