You are on page 1of 3

What is HTML

<a href="https://www.teeztareen.com/2019/07/html-tutorial-for-beginners.html
">HTML tutorial for beginners </a><br />

Html stands for a hypertext markup language. it is easy and fun to learn .html
describe the structure of web pages .html 5 is the fifth and a current major version
of HTML standard.

Why learn htm5?


It is essential to learn HTML if you went to build websites, you can not build one
if you don’t know HTML because of it one of the prerequisites in learning other
languages used for web development.
Try it your self
For you to learn faster and see how our examples would actually look like
similarly on a real browser, we have implemented a simple try it yourself editor
with syntax highlighting where you can play and experiment with the example
codes are given.

Example
<DOCTYPEhtml>
<html>
<head>
<title>HELLO WORLD! </Title>
</head>
<body>
<h1>this is a heading </h1>
<p>this is a paragraph <p>
</body>
</html>
Example explained
<doctype html>: This declares the document type which is html5
<html> :This element encloses everything inside ofan html document it includes
tags elements style sheets ,script ,text ,multimediaand a lot more .
<head> : this element encloses the metadata of document which will not
bedisplayed on the main content of web page ,this could include style
sheet,script, <title>,<meta> tag and a lot more.
<title> : this element defines the title of a webpage ;it appears in the upper part of
a browser.
<i>: And lot more
<h1> this element defines a heading
<p> this element defines a paragraph.

Html tags
Html tags are element names surrounded by single brackets.
In HTML, we start and end tags. look at the example below.
<p> hello, welcome to learn Html.</P>
Start tag and end tag.
Starting tag: also called opening a tag
Example:<p>
End tag: also called ending a tag
Example: <p>
This is the basic structure of an HTML page. memorize them.

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

You might also like