IS LEARNING HTML TOUGH ???

 

Introduction about HTML

Webpage



The HTML is a Hyper Text Markup Language and it is a user-friendly. HTML is the standard markup language designed to be displayed in a web browser. To make the website in different style, use CSS and scripting languages like JavaScript . We can build a website front end by using HTML.

HTML describes the structure of a webpage originally included cues for its appearance. We can insert images, videos, links by using simple tags. It is a document file  format.HTML elements are the building blocks of HTML pages.

HTML elements are described by tags, written using angle brackets < > .</>

Closing Tag

Let’s get into the main topic regarding tags:

Main tags used in HTML is <HTML></HTML>

HTML TAGS

EXAMPLE:

<!DOCTYPE html>

<html>

<head>

<title>Title of the page</title>

</head>

<body>

<h1>Main heading</h1>

<p>sub topics</p>

</body>

</html>

As we seen that, above is the basic structure for any of webpage building. Now lets learn in detailed about each tag line as below :

Ø  <! DOCTYPE html> declaration defines that this document is an HTML5 document.

Ø  <html> element is the root element of an html page and it has closing tag

Ø  <head> element contains meta information about the html page and it has closing tag

Ø  <title> element indicates a title for the html page which is seen on top of the page

Ø  <h1> it is a header tag which has upto <h6> tag and it is used to highlight the heading

Ø  <body> indicates that documents body, and is a container for all the contents are headings, titles, paragraphs, images, hyperlinks, lists etc…,

Ø  <p> indicates a paragraph....

Comments

Popular posts from this blog

More about html tags