index.html
about.html
contact.html
portfolio.html
rocket.svg
script.js
services.html
style.css
Upload
Toggle Sidebar
Editing: index.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Homepage</title> <link rel="stylesheet" href="style.css"> </head> <body> <header> <h1>Welcome to HTML Host</h1> <nav> <a href="index.html">Home</a> <a href="about.html">About</a> <a href="services.html">Services</a> <a href="portfolio.html">Portfolio</a> <a href="contact.html">Contact</a> </nav> </header> <main> <h2>Your Web Presence, Simplified</h2> <p>This is a demonstration of a simple website hosted and editable with HTML Host. You can click around, view the source, and even edit the files yourself.</p> <img src="rocket.svg" alt="Rocket launch" style="max-width: 200px; margin: 2rem auto; display: block;"> </main> <footer> <p>© 2024 HTML Host. All rights reserved.</p> </footer> <script src="script.js"></script> </body> </html>
Save Changes