forked from CNJasonChen/UofT-CSC309-Tutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsection2.html
72 lines (49 loc) · 2.73 KB
/
section2.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
62
63
64
65
66
67
68
69
70
71
72
<!-- CSC309 Tutorials, Week 1: HTML, Author: eh.etesami@gmail.com -->
<!-- To have an HTML document to show something, you need to populate it with contents. In this section we would like to use the following content to populate the document you built in section 1. For each new tag you see in this section, you should be able to tell why we need this tag. -->
<!-- NOTE: Don't worry about the style. You will work on the style of the page next week! -->
<!-- TODO: Find the best place to put these tags. -->
<p>©Copyright 2022. All rights reversed.
<br/>CSC309, University of Toronto</p>
<!-- TODO: Find the best place to put these tags. You will need to build a table
and populate its contents with information below -->
<p>We sell the following products:</p>
Item
Year
Price
Double Cabinet
2008
$150.00
Single Cabinet
2009
$100.00
Drawer
2009
$90.00
<!-- TODO: Find the best place to put this tag. -->
<h1>ABC Cabinet</h1>
<!-- TODO: Find the best place to put these tags. -->
<div>
<img alt="Double Cabinet" src="images/double.gif">
Double Cabinet
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras dapibus, risus quis tempus ultrices, risus metus luctus metus, eget euismod nunc felis at arcu. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Praesent malesuada ex et laoreet consectetur. Pellentesque sit amet arcu porta, aliquet justo vitae.
</div>
<!-- TODO: Find the best place to put this tag. What is meta tag and why do we use that? -->
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<!-- TODO: Find the best place to put these tags. -->
<div>
<img alt="Single Cabinet" src="images/single.gif">
Double Cabinet
In nec maximus lacus. Aenean eget magna sit amet massa pellentesque rhoncus eget in lectus. Nullam lobortis orci eu accumsan blandit. Sed efficitur interdum leo, vel cursus risus pellentesque at.
</div>
<!-- TODO: Find the best place to put these tags. -->
<h3>Navigation</h3>
<a href='main.html' class="btn btn-primary">Main Page</a>
<a href='order.html' class="btn btn-primary">Order Page</a>
<!-- TODO: Find the best place to put these tags. -->
<div>
<img alt="Drawer" src="images/drawer.gif">
Double Cabinet
Nunc faucibus efficitur augue id luctus. Donec blandit sed nisl eu volutpat. Maecenas luctus, sapien sit amet aliquet pellentesque, velit arcu consectetur lorem, ut volutpat tellus neque sit amet neque. Proin tincidunt varius malesuada. Morbi molestie a metus vel malesuada.
</div>
<!-- TODO: Find the best place to put this tag. -->
<title>ABC Cabinets</title>