1 / 6

Enhancing Website Navigation with Links and Menus

Learn how to create hyperlinks and menus in HTML, style them with CSS, and improve user experience. Discover the code for horizontal and vertical menus, and how to customize them for a polished look.

zola
Download Presentation

Enhancing Website Navigation with Links and Menus

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Things we’ve covered so far • Basic HTML • Some advanced tags i.e. <ul> • Styling using CSS • Background-color • Text • Changing the font on your site • Inserting images So what’s next??

  2. LINKS

  3. A link • In order to add a link to a website we have to use another tag called the a tag <a href=“the link”>Some text of the link</a>

  4. Menus • A great way to provide links to users of the site is through a menu. Horizontal Menu Vertical Menu

  5. The HTML The code <ul> <li><a href=http://www.bbc.co.uk>The BBC</a></li> <li><a href=http://www.twitter.co.uk>Twitter</a></li> <li><a href=http://www.facebook.co.uk>Facebook</a></li> </ul> Output

  6. Lets make it look good Using CSS we can change the look and feel of the list, to make it more like a menu. It only needs a couple of lines in CSS The CSS

More Related