-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (55 loc) · 1.89 KB
/
index.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
<!DOCTYPE html>
<html>
<head> <!--insert meta data here-->
<title>My Semantic Web Page</title>
</head>
<body><!--insert contents here.-->
<header>
<h1>
A Website about Pressure Cooking
</h1>
<nav>
<ul>
<li><a href="https://www.w3schools.com/html/html5_semantic_elements.asp">HomePage</a></li>
<li><a href="#article-2">Images Page</a></li>
<li><a href="https://canvas.uw.edu/courses/1410100/pages/lesson-02-overview?module_item_id=11170947" target=_blank>Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="articles">
</section>
<article id="article-2">
<h3>An enlightening post about pressure cookers</h3>
<p>lorem ipsum</p>
<!-- <img src="https://static.thenounproject.com/png/2128468-200.png" alt="pressure cooker" width=640/> -->
<img src="./2128468-200.png" alt="pressure cooker" alt="pressure cooker"/>
<section class="post-footer">
<h5>Post Tags</h5>
<ul>
<li>food</li>
<li>cooking</li>
<li>meats</li>
</ul>
</section>
<aside>
Click here to read about the top 5 zen gurus of pressure cooking.
</aside>
</article>
<p>
I want to tell you all about my new <em>pressure cooker. <mark>Its boss in the kitchen.</mark></em>
</p>
<h2>
Reasons to use a pressure cooker.
</h2>
<ul>
<li>It's faster</li>
<li>It's healthier</li>
<li>It's far tastier</li>
</ul>
</main>
<footer>
Copyright 2020 Victor Hoang Web Stuff
</footer>
</body>
</html>