-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
85 lines (77 loc) · 1.62 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Simple Blog</title>
<style>body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
nav ul {
list-style-type: none;
padding: 0;
}
nav ul li {
display: inline;
margin-right: 20px;
}
nav ul li a {
color: #fff;
text-decoration: none;
}
main {
padding: 20px;
}
article {
margin-bottom: 20px;
}
article h2 {
color: #333;
}
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 20px;
position: fixed;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>
<header>
<h1>My Simple Blog</h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>
<main>
<article>
<h2>First Blog Post</h2>
<p>This is the content of my first blog post. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
<a href="#">Read more</a>
</article>
<article>
<h2>Second Blog Post</h2>
<p>This is the content of my second blog post. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
<a href="#">Read more</a>
</article>
</main>
<footer>
<p>© 2024 My Simple Blog</p>
</footer>
</body>
</html>