-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBlog.html
149 lines (149 loc) · 6.03 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<!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/Blog.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css" integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<title>Blog</title>
</head>
<body>
<!-- Head -->
<section class=" top-txt ">
<div class="head container ">
<div class="head-txt ">
<p>Free shipping, 30-day return or refund guarantee.</p>
</div>
<div class="sing_in_up ">
<a href="# ">SIGN IN</a>
<a href="# ">SIGN UP</a>
</div>
</div>
</section>
<nav class="navbar">
<div class="navbar-container">
<input type="checkbox" name="" id="checkbox">
<div class="hamburger-lines">
<span class="line line1"></span>
<span class="line line2"></span>
<span class="line line3"></span>
</div>
<ul class="menu-items">
<li><a href="index.html">Home</a></li>
<li><a href="">Shop</a>
<div class="submenu">
<ul>
<li>
<a href="Shirt.html">Shirts</a>
</li>
<li>
<a href="Hooddie.html">Hoodies</a>
</li>
<li>
<a href="Pant.html">Pants</a>
</li>
<li>
<a href="Shoe.html">Shoes</a>
</li>
<li>
<a href="Glasses.html">Glasses</a>
</li>
</ul>
</div>
</li>
<li><a href="Blog.html">Blog</a></li>
<li><a href="Contact.html"><i class="far fa-address-book"></i></a></li>
</ul>
<div class="logo">
<img src="https://i.postimg.cc/TP6JjSTt/logo.webp" alt="">
</div>
</div>
</nav>
<!-- Blog -->
<section id="news">
<div class="news-heading">
<p>LATEST NEWS</p>
<h2>Fashion New Trends</h2>
</div>
<div class="l-news container">
<div class="l-news1">
<div class="news1-img">
<img src="https://i.postimg.cc/2y6wbZCm/news1.jpg" alt="img">
</div>
<div class="news1-conte">
<div class="date-news1">
<p><i class='bx bxs-calendar'></i> 12 February 2024</p>
<h4>What Curling Irons Are The Best Ones</h4>
<a href="#" target="_blank">read more</a>
</div>
</div>
</div>
<div class="l-news2">
<div class="news2-img">
<img src="https://i.postimg.cc/9MXPK7RT/news2.jpg" alt="img">
</div>
<div class="news2-conte">
<div class="date-news2">
<p><i class='bx bxs-calendar'></i> 17 February 2024</p>
<h4>The Health Benefits Of Sunglasses</h4>
<a href="#"
target="_blank">read more</a>
</div>
</div>
</div>
<div class="l-news3">
<div class="news3-img">
<img src="https://i.postimg.cc/x1KKdRLM/news3.jpg" alt="img">
</div>
<div class="news3-conte">
<div class="date-news3">
<p><i class='bx bxs-calendar'></i> 26 February 2024</p>
<h4>Eternity Bands Do Last Forever</h4>
<a href="#"
target="_blank">read more</a>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<div class="footer-container container">
<div class="content_1">
<img src="https://i.postimg.cc/htGyQ4JB/footer-logo.png" alt="logo">
<p>The customer is at the heart of our<br>unique business model, which includes<br>design.</p>
<img src="https://i.postimg.cc/Nj9dgJ98/cards.png" alt="cards">
</div>
<div class="content_2">
<h4>SHOPPING</h4>
<a href="#sellers">Shirts</a>
<a href="#sellers">Hoodies</a>
<a href="#sellers">Pants</a>
<a href="#sellers">Shoes</a>
<a href="#sellers">Glasses</a>
</div>
<div class="content_3">
<h4>SHOPPING</h4>
<a href="./contact.html">Contact Us</a>
<a href="https://payment-method-sb.netlify.app/" target="_blank">Payment Method</a>
<a href="https://delivery-status-sb.netlify.app/" target="_blank">Delivery</a>
<a href="https://codepen.io/sandeshbodake/full/Jexxrv" target="_blank">Return and Exchange</a>
</div>
<div class="content_4">
<h4>NEWLETTER</h4>
<p>Be the first to know about new<br>arrivals, look books, sales & promos!</p>
<div class="f-mail">
<input type="email" placeholder="Your Email">
<i class='bx bx-envelope'></i>
</div>
<hr>
</div>
</div>
<div class="f-design">
<div class="f-design-txt container">
<p>Design and Code by RUPP Student</p>
</div>
</div>
</footer>
</body>
</html>