Intro

html HTML (HyperText Markup Language) is the most basic building block of the Web. It defines the meaning and structure of web content.

.

HTML Boilerplate

An HTML boilerplate is a starter template providing the basic structure of an HTML document.

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Page Title</title>
    <!-- To link external styling file -->
    <link rel="stylesheet" href="style.css">
  </head>
  <body>
    <h1>Hello, world</h1>
    <p>Content goes here</p>
 
    <!-- To link external javascript file -->
    <script src="index.js"></script>
  </body>
</html>

HTML Video

Autoplay Video

https://www.w3schools.com/html/html5_video.asp