Create index.html
Browse files- index.html +32 -0
index.html
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
+
<title>Simple Blog Website</title>
|
7 |
+
<link rel="stylesheet" href="styles.css">
|
8 |
+
</head>
|
9 |
+
<body>
|
10 |
+
<header>
|
11 |
+
<h1>Blog Title</h1>
|
12 |
+
</header>
|
13 |
+
<main>
|
14 |
+
<section class="posts">
|
15 |
+
|
16 |
+
<article class="post">
|
17 |
+
<time datetime="YYYY-MM-DD">Post Date</time>
|
18 |
+
<h2>Post Title</h2>
|
19 |
+
<p>Short post summary...</p>
|
20 |
+
<a href="#readmore" class="button">Read More</a>
|
21 |
+
</article>
|
22 |
+
<!-- More posts here -->
|
23 |
+
</section>
|
24 |
+
<aside class="sidebar">
|
25 |
+
<!-- Sidebar content like categories, recent posts, etc.-->
|
26 |
+
</aside>
|
27 |
+
</main>
|
28 |
+
<footer>
|
29 |
+
<p>© Copyright Your Name - Simple Blog Website</p>
|
30 |
+
</footer>
|
31 |
+
</body>
|
32 |
+
</html>
|