Create bleh.html

This commit is contained in:
I-Am-Jakoby
2023-03-27 06:17:31 -05:00
committed by GitHub
parent aa37fe79d7
commit ecc72da1f5
+15
View File
@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html>
<head>
<title>My First HTML Page</title>
</head>
<body>
<h1>Hello World!</h1>
<p>Welcome to my first HTML page. This is just a demo.</p>
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
</body>
</html>