Back to Cosmos

HTML (Hyper Text Markup Language)

code/html/README.md

latest391 B
Original Source

HTML (Hyper Text Markup Language)

HTML is the standard markup language for creating web pages.

Current HTML version is HTML5.

Standard Syntax of HTML5 is following:

html
<!DOCTYPE html>
<html>
  <head>
    <title> Title for top of address bar </title>
  </head>
  <body>
     <!--HTML Tags and content to display on webpage-->
  </body>
</html>

Table of contents

CSS