Creating menus

  • Post author:
  • Post category:HTML
  • Post comments:0 Comments

We create menus using the unordered list tags <ul></ul> and the list item tags <li></li>. Let's start with some raw html and see what it looks like. <!DOCTYPE html> <html>…

Continue ReadingCreating menus

div tag in HTML

Is a way of breaking up the page into boxes that can be moved and styled using CSS <!DOCTYPE html> <html> <head> <title>My website</title> <meta charset="UTF-8"> </head> <body> <div> <section>…

Continue Readingdiv tag in HTML

Basic HTML layout

  • Post author:
  • Post category:HTML
  • Post comments:0 Comments

<!DOCTYPE html> <html> <head> <title>Holidays</title> <meta charset="UTF-8"> </head> <body> <section> <h2>Latest Deals</h2> <h3>See latest holiday deals here</h3> <article> <h4>Holiday 1</h4> <p>A lovely break in spain</p> </article> </section> </body> </html>

Continue ReadingBasic HTML layout