-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhomepage.html
28 lines (28 loc) · 963 Bytes
/
homepage.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="https://kit.fontawesome.com/85b9814f97.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="/styles/all.css" />
<link rel="stylesheet" href="/styles/homepage.css" />
<title>Prestige Worldwide | Home</title>
</head>
<body>
<div class="navbar">
<img src="/images/logo.svg" alt="Presige Worldwide Logo" />
<div class="nav-links">
<a href="/homepage.html">Home</a>
<a href="/shop.html">Shop</a>
<a href="/contact.html">Contact</a>
</div>
</div>
<div class="hero">
<div class="hero-content">
<h2>The Finest Watches in the World</h2>
<a href="/shop.html" class="button">Browse our Collection</a>
</div>
</div>
</body>
</html>