-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.html
More file actions
55 lines (53 loc) · 1.96 KB
/
blog.html
File metadata and controls
55 lines (53 loc) · 1.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blog</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="nav-bar">
<div class="loader">
<span class="letter">R</span>
<span class="letter">E</span>
<span class="letter">S</span>
<span class="letter">E</span>
<span class="letter">L</span>
<span class="letter">L</span>
<span class="letter">E</span>
<span class="letter">R</span>
<span class="letter"> </span>
<span class="letter"> </span>
<span class="letter">S</span>
<span class="letter">T</span>
<span class="letter">O</span>
<span class="letter">R</span>
<span class="letter">E</span>
</div>
</div>
</header>
<section class="blog-banner">
<h1>Welcome to Our Blog</h1>
<p>Discover the latest trends, tips, and updates.</p>
</section>
<section class="blog-posts">
<div class="post">
<img src="png/fe1.png" alt="Blog 1">
<h2>Top 10 Sneakers of 2024</h2>
<p>Stay ahead of the curve with our list of the top sneaker styles this year.</p>
</div>
<div class="post">
<img src="png/fe3.png" alt="Blog 2">
<h2>How to Choose the Right Running Shoes</h2>
<p>Tips and tricks for picking shoes that will enhance your performance.</p>
</div>
<div class="post">
<img src="png/banner-home2.jpg" alt="Blog 3">
<h2>The History of Sneakers</h2>
<p>Learn about how sneakers became the cultural phenomenon they are today.</p>
</div>
</section>
</body>
</html>