HTML CSS JAVASCRIPT PHP

HTML Introduction


HTML stands for Hypertext Markup Language,
and it is the standard language used to create and design web pages.
HTML is used to structure content on the web, making it possible to display text,
images, videos, links, forms, and other multimedia elements in a web browser.

HTML Document

Example

<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>This is my first heading</h1>
<p>This is my first paragraph</p>
</body>
</html>