Skip to content
This repository was archived by the owner on Jul 4, 2019. It is now read-only.

HTML Resources

Jean Huit edited this page Jun 26, 2018 · 4 revisions

Hyper Text Markup Language is the language of the web. This language describes the structure of web pages. HTML elements, made up of tags make this possible. These tags are not rendered by a browser, but rather tell a browser what to do with content they "tags" surround.

Resources

Basic Structure of an HTML page

<!doctype html>

<html lang="en">
<head>
  <meta charset="utf-8">

  <title>The Basic Structure of a page</title>
  <meta name="description" content="Description for the basic page"> 
</head>

<body>
 
</body>
</html>

Clone this wiki locally