-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
77 lines (68 loc) · 2.58 KB
/
blog.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
<!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">
<title>ecommerce</title>
<script defer src="https://use.fontawesome.com/releases/v5.15.4/js/all.js" integrity="sha384-rOA1PnstxnOBLzCLMcre8ybwbTmemjzdNlILg8O7z1lUkLXozs4DHonlDtnE7fpc" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200" />
<link rel="stylesheet" href="2.css">
</head>
<body>
<section id="header">
<a href="#"><img src="logo3.png"class="logo" alt="" width="150px"></a>
<div>
<ul id="navbar">
<li><a href="2.html">Home</a></li>
<li><a class="active" href="shop.html">Shop</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="cart.html"><span class="material-symbols-outlined">
shopping_bag
</span></a></li>
</ul>
</div>
</section>
<section id="page-header">
<h2># At home</h2>
<p> Save upto 70% off on purchase more than ₹5000 </p>
<button>Shop Now</button>
</section>
<section id="pagination" class="section-p1">
<a href="#">1</a>
<a href="#">2</a>
<a href="#">→<i class="fal fa-long-arrow-alt-right"></i></a>
</section>
</section>
<section id="newsletter">
<div class="newstext">
<h4>Sign Up For Newsletters</h4>
<p>get E-mail updates about our latest shop and <span>special offers.</span></p>
</div>
<div class="form">
<input type="text" placeholder="Your email address">
<button class="normal">Sign Up</button>
</div>
</section>
<footer class="section-p1">
<div class="col">
<img src="logo3.png" alt="">
<h4>Contact</h4>
<p><strong>Address: </strong>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Ullam inventore disti</p>
<p><strong>Phone:</strong> 9437741610</p>
<p><strong>Hours:</strong> 10:00-18:00,mon-sat</p>
<div class="follow">
<h4>Follow Us</h4>
<div class="icon">
<i class="fab fa-facebook-f"></i>
<i class="fab fa-twitter"></i>
<i class="fab fa-instagram"></i>
</div>
</div>
</div>
</footer>
<script src="2.js"></script>
</body>
</html>