-
Notifications
You must be signed in to change notification settings - Fork 0
/
productPage.html
38 lines (35 loc) · 1.09 KB
/
productPage.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
<html>
<head>
<link rel="stylesheet" href="css/layout.css"/>
<link rel="stylesheet" href="css/headerItems.css"/>
<link rel="stylesheet" href="css/containers.css"/>
<link href="https://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet"/>
<script src="js/utils.js"/></script>
<script src="js/productPage.js"/></script>
<script src="https://code.jquery.com/jquery-3.3.1.js"></script>
</head>
<body onload="setupPage();">
<header>
<div class="pageTitle">
<h><a hrefs="/">Puns Unlimited</a></h>
</div>
<div class="pageHeader">
<div class="headerItem">
<a href="/">Home</a>
</div>
<div class="dropdownItem">
<a class="dropdownHeader">About</a>
<div class="dropdownContent">
<a href="/">Bio</a>
<a href="/">About Us</a>
<a href="/">Contact</a>
</div>
</div>
</div>
</header>
<main>
<div class="imageContainer" id="productImage"></div>
<div class="textContainer" id="productInfo"></div>
</main>
</body>
</html>