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>

1
style.css Normal file
View File

@@ -0,0 +1 @@
body { font-family: Arial, sans-serif; margin: 0; padding: 0; background-color: #f4f4f4; color: #333; }\nheader { background-color: #333; color: #fff; padding: 1em 0; text-align: center; }\nmain { padding: 20px; text-align: center; }\nfooter { background-color: #333; color: #fff; text-align: center; padding: 1em 0; position: fixed; bottom: 0; width: 100%; }