-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (68 loc) · 2.97 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html>
<head>
<title>My E-Commerce Website</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.1/css/all.css" integrity="sha384-vp86vTRFVJgpjF9jiIGPEEqYqlDwgyBgEF109VFjmqGmIY/Y4HV4d3Gp2irVfcrp" crossorigin="anonymous">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Shop</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>
<section id="hero">
<h1>Welcome to My E-Commerce Website</h1>
<p>Check out our latest products and deals</p>
<a href="#" id="shop-now" onclick="window.location='link_to_shop'">Shop Now</a>
</section>
<div class="card-container">
<h2>featured Items</h2>
<div class="card">
<img src="https://via.placeholder.com/200x150?text=image+goes+here" alt="Product 1">
<h3>Product 1</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed auctor, magna at tincidunt.</p>
<a href="#" class="btn">View Product</a>
</div>
<div class="card">
<img src="https://via.placeholder.com/200x150?text=image+goes+here" alt="Product 2">
<h3>Product 2</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed auctor, magna at tincidunt.</p>
<a href="#" class="btn">View Product</a>
</div>
<div class="card">
<img src="https://via.placeholder.com/200x150?text=image+goes+here" alt="Product 3">
<h3>Product 3</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed auctor, magna at tincidunt.</p>
<a href="#" class="btn">View Product</a>
</div>
</div>
<footer>
<div class="footer-container">
<div class="footer-left">
<p>Copyright © My E-Commerce Website</p>
</div>
<div class="footer-right">
<ul>
<li><a href="#">About Us</a></li>
<li><a href="#">Contact Us</a></li>
<li><a href="#">Terms & Conditions</a></li>
<li><a href="#">Privacy Policy</a></li>
</ul>
<p>Follow us on:</p>
<div class="social-links">
<a href="https://facebook.com/my-page" target="_blank"><i class="fa fa-facebook-square"> Facebook
</i> </a>
<a href="https://twitter.com/my-handle" target="_blank"><i class="fa fa-twitter-square">twitter</i></a>
<a href="https://instagram.com/my-handle" target="_blank"><i class="fa fa-instagram">Instagram</i></a>
</div>
</div>
</div>
</footer>
</body>
</html>