1 / 6

Things we’ve covered so far

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??. LINKS. A link. In order to add a link to a website we have to use another tag called the a tag

zola
Télécharger la présentation

Things we’ve covered so far

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