Creating menus
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>…
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>…
If we create another page of a website, we can link to it within our website using the <a href> </a> tags. e.g. <a href="about_me.html">About me</a> If the file 'about_me.html'…
Often, it's a good idea to make comments in HTML and CSS code. These comments server the purpose to tell us in plain English what the code actually is, or…
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>…
<!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>