When you want a landing page or portfolio as one HTML file you open in your browser, without a website builder.
How to use
- This is great for bringing ideas to life, but not for interactive web apps.
- Ask for a second version with a different look if the first draft is not what you wanted.
- Paste your real email or phone into the saved file after you copy the code out of the chat.
Tips
- One page is enough for a first draft. Ask for more sections only if you need them.
- If the chat cuts off the code, say "continue the index.html from where you stopped."
Example output
Before you use this page
This is a very simple static website. It is just one file on your computer. It does not take payments, store passwords, or update itself.
Save the code below as index.html. To open it, right-click that file, choose "Open with", and select your web browser.
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Sunny Paws Dog Walking</title>
<style>
/* simple layout styles here */
...
</style>
</head>
<body>
<header>...</header>
<main>...</main>
<footer>...</footer>
</body>
</html>
```
Two quick edits: change the business name in the main heading. Swap [YOUR PHONE] for your real number.