Horje
HTML Code

HTML is the standard markup language for creating Web pages.

  • HTML stands for Hyper Text Markup Language
  • HTML is the standard markup language for creating Web pages
  • HTML describes the structure of a Web page
  • HTML consists of a series of elements
  • HTML elements tell the browser how to display the content
  • HTML elements label pieces of content such as "this is a heading", "this is a paragraph", "this is a link", etc.

 


Example of HTML Code

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

<h1>My First Heading</h1>
<p>My first paragraph.</p>

</body>
</html>

Output should be:

Example of HTML Code





Related Articles
HTML? HTML Introduction
HTML Code HTML Introduction
HTML Element HTML Introduction
How to view HTML Page in Web Browsers HTML Introduction
How should be HTML Page Structure HTML Introduction
HTML History HTML Introduction

Single Articles
Example of HTML CodeHTML Introduction

Category:
Web Tutorial
Sub Category:
HTML Introduction
Uploaded by:
Admin


Reffered: https://www.w3schools.com/html/tryit.asp?filename=tryhtml_intro