Introduction of HTML (HYPERTEXT MARKUP LANGUAGE)
OR
What Is HTML
HTML is the standard markup language for creating Web pages .With
help of html create a website and use images to display in web site.HTML tag
represent user information like to
display about all information in different-different domain such as
IT,Medical,Manufacturing….etc.
- There are following points in HTML given as below-
- HTML stands for Hyper Text Markup Language
- It describes the structure of Web pages using markup
- Elements are the building blocks of HTML pages
- Elements are represented by tags
- HTML tags label pieces of content such as "heading", "paragraph", "table", and so on
For Example-
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>
In the above following Tags are uses and description given
as-
The <!DOCTYPE html> declaration document type in HTML5
The <html> is the
root element
The <head> contains Meta information
The <title> specifies a title for the document
The <body> contains the visible page content
The <h1> element defines a large heading
The <p> element defines a paragraph
No comments:
Post a Comment