Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 349 Bytes

File metadata and controls

21 lines (17 loc) · 349 Bytes

HTML Notes

Intro

  • HTML: HyperText Markup Language
    • markup language: programming language used to make text do more than just sit on page
  • CSS: Cascading Style Sheets
  • tags: < >
<!DOCTYPE html>
<html>
  <head>
    <title>MyWebpage</title>
  </head>

  <body>
    <p>Hello world!</p>
  </body> 
</html>