Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Getting Started With HTML 5

Getting Started With HTML 5

A presentation on getting started with html5.

Michael Abraham Wekesa

May 28, 2022
Tweet

More Decks by Michael Abraham Wekesa

Other Decks in Technology

Transcript

  1. This markup tells a web browser how to display text,

    images and other forms of multimedia on a webpage What is HTML - Hyper Text Markup Language.
  2. More html Text document saved with the extension .html Contains

    some text written in between "< >" tags known as elements. Elements are defined by opening and closing tags and they serve a specific function eg. <b></b> for making text bold. 3
  3. 4 Text document saved with the extension .html Contains some

    text written in between "< >" tags known as elements. Elements are defined by opening and closing tags and they serve a specific function eg. <b></b> for making text bold
  4. More explanation! A html document is what makes a webpage,

    accampanied with other files that add features and styling to a webpage, or to serve a purpose in the webpage. 5 Some of these files include.
  5. CSS, the designer for HTML CSS - Cascading Style Sheets

    CSS is used for styling html files It has a syntax in which it is written. 6
  6. JS, The brains. CSS - Javascript JavaScript enables dynamic interactivity

    on websites when it is applied to an HTML document. 6
  7. <!DOCTYPE html> <html> <head> <title>Page Title</title> </head> <body> <h1>My First

    Heading</h1> <p>My first paragraph.</p> </body> </html> Sample code.