Introduction & Basics
HTML (HyperText Markup Language) is the standard markup language for Web pages.
html
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>- <!DOCTYPE html> defines this document to be HTML5
- <html> is the root element
- <head> contains meta information
- <body> contains the visible page content