-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExample-3.html
61 lines (40 loc) · 2.09 KB
/
Example-3.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
<! Anything between these angular bracket is commented out and will therefore be not displayed on the webpage>
<! HTML stand for : Hyper text markup language>
<! Objective to differentiate between PLain text and adding paragraph tag in HTML>
<! Step 1: Add a plain text to be displayed on screen with 'h1' tag>
<! Step 2: Display the same text using paragraph tag>
<! Step 3: Add line break to transfer remain words in a new line with 'br' tag>
<! Step 4: Learn different ways to make words appear bold>
<! Step 5: Learn different ways to make words appear italics>
<! Step 6: Learn different ways to make words appear with underline>
<! Step 7: Make words appear as superscript>
<! Step 8: Make words appear as subscript>
<! Step 9: Add a strike to words>
<! Step 10: Add a horizontal ruler>
<html>
<head>
<title>First Webpage</title>
</head>
<body>
<h1>My first HTML page!!</h1>
<p> ---------------PARAGRAPH----------------------------</p>
<p> What's up folks </p>
<p> Let's learn about paragraph in html</p>
<p> Let's learn about paragraph and line break <br> in html</p>
<p> ----------------BOLD------------------------------</p>
<p> Let's make some <b>bold</b> text</p>
<p> Let's make some <strong>strongly bold</strong> text</p>
<p> ----------------ITALICS---------------------------------</p>
<p> Let's make some <i>italics</i> text</p>
<p> Let's put some <em>emphasis on italics</em> text</p>
<p> ----------------UNDERLINE---------------------------------</p>
<p> Let's make some <u>Underline</u> text</p>
<p> Let's put some <ins>new Underline format</ins> text</p>
<p> ----------------SUPER and SUB SCRIPT---------------------------------</p>
<p> Let's make some <sup>superscript</sup> text</p>
<p> Let's put some <sub>subscript</sub> text</p>
<p> ----------------STRIKEOUT---------------------------------</p>
<p> Let's make some <del>strikeout</del> text</p>
<hr>
</body>
</html>