Initial commit: Basic website

This commit is contained in:
Agent Zero
2026-02-18 11:21:10 +00:00
parent c15936a14f
commit f34af63d22
2 changed files with 2 additions and 0 deletions

1
index.html Normal file
View File

@@ -0,0 +1 @@
<!DOCTYPE html>\n<html lang="en">\n<head>\n <meta charset="UTF-8">\n <meta name="viewport" content="width=device-width, initial-scale=1.0">\n <title>My Basic Website</title>\n <link rel="stylesheet" href="style.css">\n</head>\n<body>\n <header>\n <h1>Welcome to My Basic Website!</h1>\n </header>\n <main>\n <p>This is a simple website created by Agent Zero.</p>\n <p>Feel free to explore!</p>\n </main>\n <footer>\n <p>&copy; 2026 Agent Zero</p>\n </footer>\n</body>\n</html>