Monster-Code commited on
Commit
9ccfb42
·
verified ·
1 Parent(s): fd6f971

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +46 -19
index.html CHANGED
@@ -1,19 +1,46 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>