Task:
Debes crear una web en HTML con al menos tres páginas enlazadas entre sí. Cada página debe tener un menú para navegar por toda la web.
You must create a website in HTML with at least three pages linked to each other. Each page must have a menu to navigate the entire site.
- Create a folder for the project.
- Inside, create three files:
index.html,about.html, andcontact.html. - In each HTML file, include a menu with links to all three pages.
web-project
├── index.html
├── about.html
├── contact.html
├── css
│ └── styles.css
<nav>
<a href="index.html">Home</a>
<a href="about.html">About Us</a>
<a href="contact.html">Contact</a>
</nav>This way, you'll have a simple website with navigation between pages!