1 / 24

Web Foundations

Web Foundations. Monday, September 30, 2013 LECTURE 3 : Common HTML TAGS, NEW HTML5 Sections, Using FTP. FTP. Does everybody have FTP working from his-or-her home computers or laptops?. Dreamweaver: Built-In Reference. From the Menu Bar: Window > Results > Reference.

felice
Télécharger la présentation

Web Foundations

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. Web Foundations Monday, September 30, 2013 LECTURE 3: Common HTML TAGS, NEW HTML5 Sections, Using FTP

  2. FTP Does everybody have FTP working from his-or-her home computers or laptops?

  3. Dreamweaver: Built-In Reference From the Menu Bar: Window > Results > Reference

  4. Dreamweaver: Built-In Reference

  5. Setting Up Your Portfolio root • index.html file • folders • labs • images • research • styles • docs • (etc, feel free to experiment with other folder names) Demo

  6. Setting Up Your Portfolio labs Demo

  7. Setting Up Your Portfolio index.html Demo

  8. Common Tags W3Schools: <p> tag

  9. W3Schools: <br> tag

  10. W3Schools: <h1> to <h6> tags

  11. W3Schools: <ol> tag

  12. W3Schools: <ul> tag

  13. Back before HTML5, if you wanted to design a page into sections you had to use the <div> or "division" tag and creating a separate "id" or "class" for each section you wanted (we'll talk about divs, ids, and classes a bit later)

  14. With HTML5, there are several new tags with this section functionality built in by default. You still need to position and format these sections using CSS, but you don't have to create separate or unique "classes" or "ids" anymore to do it.

  15. W3Schools: <header> tag

  16. W3Schools: <nav> tag

  17. W3Schools <footer> tag

  18. W3Schools <article> tag

  19. W3Schools <section> tag

  20. W3Schools <aside> tag

  21. W3Schools <div> tag

  22. <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <title>Putting It All Together</title> </head> <body> <header><h1>My Page</h1></header> <nav> <a href="index.html">Home</a> </nav> <main> <article> <h2>My Article</h2> <p>Some Content</p> </article> <aside> <p>More information</p> </aside> </main> <footer><p>&copy; Rex Winkus 2013 <a href="mailto:winkus.rex@gmail.com">Email Me</a><p></footer> </body> </html>

More Related