forked from elwinaugustin/creative-engineering
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathec1.html
More file actions
83 lines (62 loc) · 2.32 KB
/
ec1.html
File metadata and controls
83 lines (62 loc) · 2.32 KB
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
81
82
83
<!DOCTYPE html>
<html>
<head>
<head>
<title>E-Commerce Site</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" integrity="sha384-rbsA2VBKQh58iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4k0Y0K2SR4kBFvZj3be+SNiqU39cvqUiqFsdAVAw6REKb8yMiFHQRw" crossorigin="anonymous"></script>
<title>E-Commerce Site</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>E-Commerce Site</h1>
<nav>
<a href="#">Home</a>
<a href="#">Products</a>
<a href="#">About Us</a>
<a href="#">Contact Us</a>
</nav>
</header>
<main>
<section class="hero">
<h2>Welcome to our E-Commerce Site!</h2>
<p>We sell a wide variety of products, including clothes, electronics, and home goods. We offer competitive prices and fast shipping.</p>
<a href="#" class="btn btn-primary">Shop Now</a>
</section>
<section class="products">
<h3>Featured Products</h3>
<div class="row">
<div class="col-md-4">
<div class="product">
<img src="https://placehold.it/300x300" alt="Product image">
<h3>Product Name</h3>
<p>Product description</p>
<a href="#" class="btn btn-primary">Add to Cart</a>
</div>
</div>
<div class="col-md-4">
<div class="product">
<img src="https://placehold.it/300x300" alt="Product image">
<h3>Product Name</h3>
<p>Product description</p>
<a href="#" class="btn btn-primary">Add to Cart</a>
</div>
</div>
<div class="col-md-4">
<div class="product">
<img src="https://placehold.it/300x300" alt="Product image">
<h3>Product Name</h3>
<p>Product description</p>
<a href="#" class="btn btn-primary">Add to Cart</a>
</div>
</div>
</div>
<a href="#" class="btn btn-primary">View All Products</a>
</section>
</main>
<footer>
<p>Copyright © 2023 E-Commerce Site</p>
</footer>
</body>
</html>