Home HTML CSS JAVASCRIPT BOOTSTRAP Python Docker ML tutorial About us Privacy policy

First HTML program

Introduction

Introduction

  • HTML stands for Hyper text markup language.
  • Used to develop static web pages.
  • HTML5 is a latest version of html released on 14 december 2017 as a w3c recomandation.

HTML Basic structure

<!DOCTYPE html>
<html>
<head>
  <title></title>
</head>
<body>
</body>
</html>

First program in html

<!DOCTYPE html>
<html>
<head>
  <title>First program in html</title>
</head>
<body>
  <h1>My first program</h1>
</body>
</html>