Horje
What is 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
What is HTML? HTML Introduction
What is HTML Code HTML Introduction
What is HTML Element HTML Introduction
How to view HTML Page in Web Browsers HTML Introduction
How should be HTML Page Structure HTML Introduction
What is HTML History HTML Introduction

Single Articles
Example of HTML CodeHTML Introduction

Read Full:
HTML Introduction
Category:
Web Tutorial
Sub Category:
HTML Introduction
Uploaded:
1 year ago
Uploaded by:
Admin
Views:
249


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

Share on: