Total Pageviews

15 October 2018

Introduction of HTML (HYPERTEXT MARKUP LANGUAGE)


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.
  1.        There are following points in HTML given as below-
  2.        HTML stands for Hyper Text Markup Language
  3.        It describes the structure of Web pages using markup
  4.        Elements are the building blocks of HTML pages
  5.        Elements are represented by tags
  6.        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

Contact Form

Name

Email *

Message *