-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
42 lines (38 loc) · 1.57 KB
/
home.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/css/style.css">
<title>ECommerce</title>
</head>
<body>
<header>
<div class="logo-container">
<img src="https://cdnb.artstation.com/p/assets/images/images/018/618/245/large/joshua-redican-tw-rugby-ideas2.jpg?1560078775" alt="logo" width="100">
</div>
<h1>Tech Wolves Sporting Equipment</h1>
<nav>
<a class="nav-link" href="home.html">Home</a>
<a class="nav-link" href="products.html">Products</a>
<a class="nav-link" href="contact.html">Contact</a>
</nav>
</header>
<div class="container">
<section>
<h2>Best Equiptment for young Athletes</h2>
<img src="https://profootballtalk.nbcsports.com/wp-content/uploads/sites/25/2016/07/480805164.jpg?resize=1506,848" alt="sportskids" width="600">
</section>
<section>
<h3>About Us</h3>
<p>Here at Tech Wolves Sporting Equipment we provide young talented athletes premium quality sporting equipment at an affordable price. </p>
<img src="https://www.oldcity.com/wp-content/uploads/2019/07/Soccer-ball-football-basketball-baseball.jpg" alt="sportsimage" width="400">
</section>
<footer>
<p>Copyright © 2020 Tech Wolves Sporting Equipment All Rights Reserved.</p>
<a href="#" class="fa fa-facebook"></a>
<a href="#" class="fa fa-twitter"></a>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</footer>
</div>
</body>