diff --git a/main.htnl b/main.htnl new file mode 100644 index 0000000000000000000000000000000000000000..909427fde1720cf8ed717a3d9f68434cb5f9fddb --- /dev/null +++ b/main.htnl @@ -0,0 +1,40 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <title>Your Page Title</title> + <!-- Add any additional metadata, stylesheets, or scripts here --> +</head> +<body> + <header> + <h1>Welcome to Your Website</h1> + <!-- Add navigation links or other header content here --> + </header> + + <main> + <section> + <h2>About</h2> + <p>This is a basic webpage. You can customize it with your own content.</p> + </section> + + <section> + <h2>Services</h2> + <ul> + <li>Service 1</li> + <li>Service 2</li> + <li>Service 3</li> + </ul> + </section> + + <section> + <h2>Contact</h2> + <p>You can reach us at contact@example.com</p> + </section> + </main> + + <footer> + <p>© 2024 Your Website. All rights reserved.</p> + </footer> +</body> +</html> diff --git a/main.py b/main.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391