Total Pageviews

15 October 2018

All HTML Versions

All HTML Versions


Since the early days of the web, there have been many versions of HTML:
his specification defines the 5th major version, second minor revision of the core language of the World Wide Web: the Hypertext Markup Language (HTML)



Version Year


HTML
1991
HTML 2.0
1995

HTML 3.2
1997
HTML 4.01
1999
XHTML
2000
HTML5
2014


HTML Page Structure



HTML Page Structure

Below is a visualization of an HTML page structure:

<html>
<head>
<title>Page title</title>
</head>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
</body>
</html>

 <!DOCTYPE> Declaration

The <!DOCTYPE> declaration represents the document type, and helps browsers to display web pages correct way.It must only appear once, at the top of the page (before any HTML tags).The <!DOCTYPE> declaration is not case sensitive.The <!DOCTYPE> declaration for HTML5 is:

For Example
<!DOCTYPE html>

HTML Tags

HTML Tags


HTML tags are element names surrounded by angle brackets: following tags are given as below-


<P>
</P>
Paragraph
<H1>
</H1>
Heading
<br>
</br>
Break
<b>
</b>
Bold
<marquee>
</marquee>
Movement
<body>
</body>
Body content
etc.
etc..
……………………

Here we are using above tags paragraph ,heading,break bold movement tags are used

For example

<!DOCTYPE html>

<html>

<head>

<title>Page Title</title>

</head>

<body>

 <Marquee>My First Web Page <Marquee>

<h1>My First Heading</h1>

<p>My first paragraph.</p>



</body>


</html>



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





Contact Form

Name

Email *

Message *