Skip to content

Latest commit

 

History

History

01 HTML_first_webpage

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

HTML - Hyper Text Markup Language

“Hypertext Markup Language is the standard markup language for documents designed to be displayed in a web browser. It can be assisted by technologies such as Cascading Style Sheets and scripting languages such as JavaScript.” — Wikipedia

HTML Example

<!DOCTYPE html>
<html>
  <head>
  
    <!--  The head contains Meta-data -->
    <meta charset="utf-8">
    <title> This is the Title! </title>
    
  </head>
  <body>
  
    <!-- The body contains the actual content -->

  </body>
</html>

HTML Basics Exercise

Write the necessary HTML to make your page look just like this one:

Output

Additional Resources