-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
32 lines (30 loc) · 910 Bytes
/
index.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
<!DOCTYPE html>
<html lang="en" >
<head>
<title>Welcome</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1.0,shrink-to-fit=no" />
<link rel="stylesheet" href="assets/css/screen.css" />
</head>
<body>
<header id="header">
<h1 id="shop-name">Simple Succulent Shop</h1>
<nav>
<ul id="nav-buttons">
<li><a class="nav-button" id="home-nav" href="">Home</a></li>
<li><a class="nav-button" id="store-nav" href="store/">Store</a></li>
<li><a class="nav-button" id="cart-nav" href="cart/">Cart</a></li>
</ul>
</nav>
</header>
<main id="home">
<section id="home-section">
<h4> Welcome To Our</h4>
<h2>Amazing Succulent Shop!</h2>
<h1>The Best In Town</h1>
<p>Make life easier with our online store!</p>
<a href="store/">Shop Now</a>
</section>
</main>
</body>
</html>