-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathintro.html
More file actions
51 lines (38 loc) · 861 Bytes
/
intro.html
File metadata and controls
51 lines (38 loc) · 861 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<!-- meta charset: holds all the symbols for html-->
<title>Pizza</title>
</head>
<body>
<!--<p><</p>-->
<p>Hello World</p>
<i>hello world</i>
<em>hello world</em>
<!--semantic value for the em tag-->
<b>hello</b>
<p><strong>hello</strong></p>
<!--semantic meaning behind the strong tag-->
<p>tuesday<i>monday</i></p>
<p>wednesday</p>
<p>Wednesdays <strong>are not fun</strong></p>
<!--in elements are-->
<!--<i></i>>-->
<!--<em></em>>-->
<!--<b></b>-->
<!--<strong></strong>-->
<!--Block scope element-->
<!--<div></div>-->
<!--<p></p>-->
<!--<hi></hi>-->
<!--<nav></nav>-->
<h1>this is my title</h1>
<h2>this is my title</h2>
<h3>this is my title</h3>
<h4>this is my title</h4>
<h5>this is my title</h5>
<h6>this is my title</h6>
<script src=""></script>
</body>
</html>