Initial commit: Basic website
This commit is contained in:
1
index.html
Normal file
1
index.html
Normal 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>© 2026 Agent Zero</p>\n </footer>\n</body>\n</html>
|
||||
1
style.css
Normal file
1
style.css
Normal 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%; }
|
||||
Reference in New Issue
Block a user