-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblogs.html
More file actions
175 lines (167 loc) · 5.47 KB
/
blogs.html
File metadata and controls
175 lines (167 loc) · 5.47 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
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
<!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" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"
integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<title>Blogs</title>
<link rel="stylesheet" href="styles/style.css" />
</head>
<body>
<!--! header section start -->
<header class="header">
<a href="#" class="logo">
<img src="images/logo.png" alt="logo" />
</a>
<nav class="navbar">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="menu.html">Menu</a>
<a href="products.html">Products</a>
<a href="review.html">Review</a>
<a href="contact.html">Contact</a>
<a href="blogs.html" class="active">Blogs</a>
</nav>
<div class="buttons">
<button id="search-btn">
<i class="fas fa-search"></i>
</button>
<button id="cart-btn">
<i class="fas fa-shopping-cart"></i>
</button>
<button id="menu-btn">
<i class="fas fa-bars"></i>
</button>
</div>
<div class="search-form">
<input
type="text"
class="search-input"
id="search-box"
placeholder="search here"
/>
<i class="fas fa-search"></i>
</div>
<div class="cart-items-container">
<div class="cart-item">
<i class="fas fa-times"></i>
<img src="images/menu-1.png" alt="menu" />
<div class="content">
<h3>cart item 01</h3>
<div class="price">$15.99/-</div>
</div>
</div>
<div class="cart-item">
<i class="fas fa-times"></i>
<img src="images/menu-2.png" alt="menu" />
<div class="content">
<h3>cart item 02</h3>
<div class="price">$15.99/-</div>
</div>
</div>
<div class="cart-item">
<i class="fas fa-times"></i>
<img src="images/menu-3.png" alt="menu" />
<div class="content">
<h3>cart item 03</h3>
<div class="price">$15.99/-</div>
</div>
</div>
<div class="cart-item">
<i class="fas fa-times"></i>
<img src="images/menu-4.png" alt="menu" />
<div class="content">
<h3>cart item 04</h3>
<div class="price">$15.99/-</div>
</div>
</div>
<a href="#" class="btn">checkout now</a>
</div>
</header>
<!--! header section end -->
<!--! blogs section start -->
<section class="blogs" id="blogs">
<h1 class="heading">our <span>blog</span></h1>
<div class="box-container">
<div class="box">
<div class="image">
<img src="images/blog-1.jpg" alt="blog" />
</div>
<div class="content">
<a href="#" class="title">how to make burgers?</a>
<span>by admin / 10st may, 2020</span>
<p>
Lorem Ipsum Dolor Sit Amet Consectetur, Adipisicing Elit.
Temporibus, Laudantium!
</p>
<a href="#" class="btn">read more</a>
</div>
</div>
<div class="box">
<div class="image">
<img src="images/blog-2.jpg" alt="blog" />
</div>
<div class="content">
<a href="#" class="title">how to make burgers?</a>
<span>by admin / 10st may, 2020</span>
<p>
Lorem Ipsum Dolor Sit Amet Consectetur, Adipisicing Elit.
Temporibus, Laudantium!
</p>
<a href="#" class="btn">read more</a>
</div>
</div>
<div class="box">
<div class="image">
<img src="images/blog-3.jpg" alt="blog" />
</div>
<div class="content">
<a href="#" class="title">how to make burgers?</a>
<span>by admin / 10st may, 2020</span>
<p>
Lorem Ipsum Dolor Sit Amet Consectetur, Adipisicing Elit.
Temporibus, Laudantium!
</p>
<a href="#" class="btn">read more</a>
</div>
</div>
</div>
</section>
<!--! blogs section end -->
<!--! footer section start -->
<section class="footer">
<div class="search">
<input type="text" class="search-input" placeholder="Search" />
<button class="btn btn-primary">search</button>
</div>
<div class="share">
<a href="#" class="fab fa-facebook"></a>
<a href="#" class="fab fa-twitter"></a>
<a href="#" class="fab fa-instagram"></a>
<a href="#" class="fab fa-linkedin"></a>
<a href="#" class="fab fa-pinterest"></a>
</div>
<div class="links">
<a href="#">Home</a>
<a href="#">About</a>
<a href="#">Menu</a>
<a href="#">Products</a>
<a href="#">Review</a>
<a href="#">Contact</a>
<a href="#" class="active">Blogs</a>
</div>
<div class="credit">
created by <span>Volkan Kıyçak</span> | all rigths reserved
</div>
</section>
<!--! footer section end -->
<script src="js/script.js"></script>
</body>
</html>