-
Notifications
You must be signed in to change notification settings - Fork 0
/
shopnow.html
40 lines (38 loc) · 892 Bytes
/
shopnow.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
<!DOCTYPE html>
<html lang="en">
<head>
<title> TISSOT WATCHES:: SHOP NOW</title>
<meta charset="utf-8">
<link rel="stylesheet" href="tissotwatches.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div id="wrapper">
<header>
<h1>TISSOT WATCHES AND CO.</h1>
</header>
<nav>
<ul>
<li><a href="Homepage.html">Home</a></li>
<li><a href="About.html">About</a></li>
<li><a href="shopnow.html">Collection</a></li>
<li><a href="contactus.html">Contact Us</a></li>
</ul>
</nav>
<main>
<div id="sh" class="shop">
<h1><u>Latest Collection</u></h1>
<div class="cards" id="shop-cards">
<!-- Populated using js -->
</div>
</div>
</div>
<div>
<script src="watches2.js"></script>
</div>
</main>
<footer>
Copyright ©Tissot Watches and Co.
</footer>
</body>
</html>