Module 1

HTML5 Fundamentals

Lesson 1: Introduction to HTML5

HTML is the standard markup language for documents designed to be displayed in a web browser.

HTML5
<!DOCTYPE html>
<html lang="en">
<head>
  <title>My First Page</title>
</head>
<body>
  <h1>Welcome to Master Coding</h1>
</body>
</html>