-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
70 lines (68 loc) · 2.02 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Personal Blog</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<h1 class="title">Your Personal Blog</h1>
<nav class="navlist">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">Blog</a></li>
</ul>
<div class="search">
<input type="text" placeholder="Search here..." />
<button type="submit">Search</button>
</div>
</nav>
</header>
<br />
<main>
<div class="grid">
<div class="card">
<img src="image1.jpg" alt="Blog Post 1" />
<h2>Blog Post 1</h2>
<p>Publication Date: 15th March, 2022</p>
<p class="description">Short description of Blog Post 1</p>
</div>
<div class="card">
<img src="image2.jpg" alt="Blog Post 2" />
<h2>Blog Post 2</h2>
<p>Publication Date: 23rd May, 2023</p>
<p class="description">Short description of Blog Post 2</p>
</div>
<div class="card">
<img src="image3.jpg" alt="Blog Post 2" />
<h2>Blog Post 3</h2>
<p>Publication Date: 12th May, 2022</p>
<p class="description">Short description of Blog Post 3</p>
</div>
</div>
</main>
<br /><br />
<footer class="footer">
<div class="container">
<div>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="#blog">Blog</a></li>
</ul>
</nav>
</div>
<br />
<div class="footer-content">
<p>© 2023 Your Company. All rights reserved.</p>
</div>
</div>
</footer>
</body>
</html>