-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpc_home_Fatonie.html
98 lines (95 loc) · 3.51 KB
/
pc_home_Fatonie.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html>
<head>
<!--
New Perspectives on HTML5 and CSS3, 7th Edition
Tutorial 3
Tutorial Case
Home Page of Pandaisia Chocolates
Author: Fatonie, Muhammad
Date: 11/3/20
Filename: pc_home.html
-->
<meta charset="utf-8" />
<meta name="keywords" content="chocolate, chocolatier, cocoa, cacao, desserts" />
<title>Pandaisia Chocolates</title>
<link href="pc_reset_Fatonie.css" rel="stylesheet" />
<link href="pc_styles1_Fatonie.css" rel="stylesheet" />
<link href="pc_home_Fatonie.css" rel="stylesheet" />
</head>
<body>
<header>
<img src="pc_logo.png" alt="Pandaisia Chocolates" />
<nav class="horizontalNavigation">
<ul>
<li><a href="pc_home_Fatonie.html">Home</a></li>
<li><a href="#">Online Store</a></li>
<li><a href="#">My Account</a></li>
<li><a href="#">Specials</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
</nav>
</header>
<section id="leftColumn">
<p>Pandaisia Chocolates has been creating
gourmet chocolates and sweets for happy customers since
1993. Our hand-dipped truffles, savory chocolates, and
mouth-watering toffees are made from the finest
organic cacao. We use only natural ingredients with
wildflower honey replacing corn syrup and cream that comes
fresh from local dairy farms. Chocolate
is an art: come tour our gallery.</p>
</section>
<section id="rightColumn"> <img src="pc_photo1.png" alt="" />
<nav class="horizontalNavigation">
<ul>
<li><a class="photoLink" href="#">Chocolates <img src="pc_photo2.png" alt="" /></a></li>
<li><a class="photoLink" href="#">Fudges <img src="pc_photo3.png" alt="" /></a></li>
<li><a class="photoLink" href="#">Toffees <img src="pc_photo4.png" alt="" /></a></li>
<li><a class="photoLink" href="#">Truffles <img src="pc_photo5.png" alt="" /></a></li>
</ul>
</nav>
</section>
<footer>
<nav class="verticalNavigation">
<h1>The Store</h1>
<ul>
<li><a href="pc_about.html">About Us</a></li>
<li><a href="#"><img id="fbicon" src="fbicon.png" alt="" />Facebook</a></li>
<li><a href="#"><img id="twittericon" src="twittericon.png" alt="" />Twitter</a></li>
<li><a href="#">Reviews</a></li>
<li><a href="pc_info.html">Infographic</a></li>
</ul>
</nav>
<nav class="verticalNavigation">
<h1>Products</h1>
<ul>
<li><a href="#">Online Store</a></li>
<li><a href="#">Gift Boxes</a></li>
<li><a href="#">Collections</a></li>
<li><a href="#">Weddings</a></li>
<li><a href="#">Specials</a></li>
</ul>
</nav>
<nav class="verticalNavigation">
<h1>Services</h1>
<ul>
<li><a href="#">My Account</a></li>
<li><a href="#">Order History</a></li>
<li><a href="#">Tracking</a></li>
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
</nav>
<section id="contactInfo">
<h1>Location & Hours</h1>
<p>414 Tree Lane <br />
Essex, Vermont 05452<br />
(802) 555-0414 </p>
<p>Mon - Thu: 9 a.m. - 8 p.m.<br />
Sat - Sun: 9 a.m. - 5 p.m.</p>
<p>Toll Free: 1-800-555-0414</p>
</section>
</footer>
</body>
</html>