Spaces:
Running
Running
Update index.html
Browse files- index.html +46 -19
index.html
CHANGED
|
@@ -1,19 +1,46 @@
|
|
| 1 |
-
<!
|
| 2 |
-
<html>
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
</
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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>Private Public Blog</title>
|
| 7 |
+
<link rel="stylesheet" href="style.css">
|
| 8 |
+
</head>
|
| 9 |
+
<body>
|
| 10 |
+
<header>
|
| 11 |
+
<nav>
|
| 12 |
+
<div class="logo">🍓 Private Public</div>
|
| 13 |
+
<ul>
|
| 14 |
+
<li><a href="#home">Home</a></li>
|
| 15 |
+
<li><a href="#blog">Blog</a></li>
|
| 16 |
+
<li><a href="#about">About</a></li>
|
| 17 |
+
</ul>
|
| 18 |
+
</nav>
|
| 19 |
+
</header>
|
| 20 |
+
|
| 21 |
+
<main>
|
| 22 |
+
<section id="hero">
|
| 23 |
+
<h1>Welcome to Private Public</h1>
|
| 24 |
+
<p>Thoughts, ideas, and everything in between</p>
|
| 25 |
+
</section>
|
| 26 |
+
|
| 27 |
+
<section id="blog-posts">
|
| 28 |
+
<article class="post">
|
| 29 |
+
<h2>First Post Title</h2>
|
| 30 |
+
<p class="date">September 17, 2026</p>
|
| 31 |
+
<p>Your first blog post content goes here...</p>
|
| 32 |
+
</article>
|
| 33 |
+
|
| 34 |
+
<article class="post">
|
| 35 |
+
<h2>Second Post Title</h2>
|
| 36 |
+
<p class="date">September 15, 2026</p>
|
| 37 |
+
<p>Another amazing post...</p>
|
| 38 |
+
</article>
|
| 39 |
+
</section>
|
| 40 |
+
</main>
|
| 41 |
+
|
| 42 |
+
<footer>
|
| 43 |
+
<p>Made with ❤️ by TeamAudiyo</p>
|
| 44 |
+
</footer>
|
| 45 |
+
</body>
|
| 46 |
+
</html>
|