HTML Concepts

Table of Contents

HTML Template

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>TITLE</title>
</head>

<body>
  <h1>HEADING</h1>
  <p>CONTENT</p>
</body>

</html>

HTML Attributes vs DOM Properties discussion

<input id="the-input" type="text" value="Name:">

Quotes for HTML attribute values discussion

<iframe src="www.example.com" width="100%"></iframe>

HTML Boolean Attribute discussion