Skip to content

iyasyr/WebDev-FT

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 

Repository files navigation

Web Project

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.

How do I solve it?

  1. Create a folder for the project.
  2. Inside, create three files: index.html, about.html, and contact.html.
  3. In each HTML file, include a menu with links to all three pages.

Project structure

web-project
├── index.html
├── about.html
├── contact.html
├── css
│   └── styles.css

Example of a menu in HTML

<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!

About

Course: DEVELOPMENT OF APPLICATIONS WITH WEB TECHNOLOGIES

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published