Metaphysicist commited on
Commit
3093831
1 Parent(s): a19dc1e

index.html

Browse files
Files changed (1) hide show
  1. static/index.html +22 -0
static/index.html ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+
4
+ <head>
5
+ <title>My Web Page</title>
6
+ <link rel="shortcut icon" href="#">
7
+ </head>
8
+
9
+ <body>
10
+ <h1>Welcome to My Web Page</h1>
11
+ <p>This is a simple web page created using HTML.</p>
12
+ <h2>About Me</h2>
13
+ <p>I am a web developer learning HTML.</p>
14
+ <h2>My Hobbies</h2>
15
+ <ul>
16
+ <li>Reading</li>
17
+ <li>Hiking</li>
18
+ <li>Coding</li>
19
+ </ul>
20
+ </body>
21
+
22
+ </html>