-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheighth_html.html
More file actions
33 lines (32 loc) · 1.19 KB
/
eighth_html.html
File metadata and controls
33 lines (32 loc) · 1.19 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
<html>
<!-- comments! -->
<head>
<title>Extras</title>
<meta name="description"
content="All about Pizza"/>
<meta name="keywords"
content="pizza, bread"/>
<meta name="robots"
content="nofollow"/>
<meta http-equiv="author"
content="William Ma"/>
<meta http-equiv="pragma"
content="no-cache">
<!-- meta is used to describe the characteristics of the webpage -->
</head>
<body>
<h1>Pizza!</h1>
<br />
<p id="pizza">Pizza is a delicious food item.</p>
<p class="bread">Pizza has a bread crust to hold all other
ingredients.</p>
<h1>Bread!</h1>
<div id="history">
<!-- div is used to group sections of elements -->
<p>Bread is one of the oldest foods. There is evidence from <span class="years">30,000 years ago</span> that shows starch on rocks, possibly due to the process of creating bread.</p>
<!-- span is used for inline grouping of elements -->
</div>
<iframe src="https://en.wikipedia.org/wiki/Bread#History" height="300" width="400" frameborder="0" scrolling="no"></iframe>
<!-- iframe is used to open a "window" into another webpage -->
</body>
</html>