-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathintro.html
More file actions
48 lines (42 loc) · 1.21 KB
/
intro.html
File metadata and controls
48 lines (42 loc) · 1.21 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
46
47
48
<!DOCTYPE html>
<!--void elements-->
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Pizza</title>
<!-- head is invisible to users with the exception of title-->
<!-- changing "Title" will change what is displayed on page tab-->
<!-- less than and greater than signs are reserved symbols-->
<!-- css source will go in head not the body-->
</head>
<body>
<!--typing the tag then "tab" will produce the required tag-->
<!--<> is an opening tag and </> is a closing tag-->
<!--inline elements are-->
<!-- <i> </> -->
<!-- <em> </em> -->
<!-- <b> </b> -->
<!-- <strong> </strong> -->
<!-- block scope elements -->
<!-- <div> </div> -->
<!-- <p></p> -->
<!-- <h1></h1> -->
<!-- <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>
<p>Hello World</p>
<i>hello world</i>
<h1><em>lasso</em></h1>
<b>hello again</b>
<strong>hello there</strong>
<p><strong>hello again</strong></p>
<p>tuesday <i>monday</i></p>
<p>wednesday <strong>are not fun</strong></p>
<!--its good to have the main tag in the body so that it is known that that is the main portion of the code-->
<script src=""></script>
</body>
</html>