Skip to main content

HTML BASIC PART1

HTML DOCUMENT STRUCTURE

<!DOCTYPE html>
<html>

   <head>
      <title>Heading Example</title>
   </head>
 
   <body>
      <h1>Structure Heading</h1>
          <p>Paragraph</p>
   </body>
 
</html>



**Save this code from .htm or.html extension**


OUTPUT

Structure Heading

      Paragraph



HTML HEADING

HTML has 6 levels of heading that is <h1> <h2> <h3> <h4> <h5> and <h6>


EXAMPLE:

<!DOCTYPE html>
<html>

   <head>
      <title>Heading Example</title>
   </head>
 
   <body>
      <h1>This is heading 1</h1>
      <h2>This is heading 2</h2>
      <h3>This is heading 3</h3>
      <h4>This is heading 4</h4>
      <h5>This is heading 5</h5>
      <h6>This is heading 6</h6>
   </body>
 
</html>

Output


This is heading 1

This is heading 2

This is heading 3

This is heading 4

This is heading 5
This is heading 6

Paragraph Tag


<p> Tag is used for a paragraph. It is paired tag. Each paragraph start from opening tag <p> and closed from closing tag </p>.

EXAMPLE:

<!DOCTYPE html>
<html>

   <head>
      <title>Paragraph </title>
   </head>
 
   <body>
      <p>Here is a first paragraph of text.</p>
      <p>Here is a second paragraph of text.</p>
      <p>Here is a third paragraph of text.</p>
   </body>
 
</html>
OUTPUT:
Here is a first paragraph of text.
Here is a second paragraph of text.
Here is a third paragraph of text.

Comments

Popular posts from this blog

ASIDE TAG

ASIDE TAG ASIDE tag is new tag in HTML5. It represents a part of a document whose content is only indirectly related to the document's main content..] Aside tag used  for pull quotes,comments,editorial sidebars etc. NOTE: Behaviour of div and aside are same but  meaning is different. Div is used for create a section or a division. Aside is also used for create a section or division but related to content of the main page.         SYNTAX <!DOCTYPE html> <html> <head> <title> HTML Aside Tag </title> </head> <body> <aside> <h2>HTML</h2> <p>HyperText markup Language</p> </aside> </body> </html> OUTPUT HTML Hypertext markup Language --------------------------------------------------------------------------------------------------------------------------------------------

ARTICLE TAG

ARTICLE TAG Article tag is new tag in HTML5. It is used to represent the article. It is used for blog post,forms,newspapers,magazines etc. Article tag  specifies self-contained composition in a site, document, page or application. It supports all global attributes.     SYNTAX <!DOCTYPE html> <html> <head> <title> HTML Article Tag </title> </head> <body> <article> <h2>HTML</h2> <p>HyperText markup Language</p> </article> </body> </html> OUTPUT HTML Hypertext markup Language --------------------------------------------------------------------------------------------------------------------------

WELCOME TO HTML

                                                        What is HTML? H tml   stands for  Hypertext Markup Language . Some student thinks that HTML is a programming language but it is not a programming language. It is a markup language. It is used to design web pages.  The father of HTML is  Tim-Berners Lee . He is also director of W3 Consortium.Html is created in 1991 but officially releasing year of HTML is 1995 with HTML 2.0 version. What is Web? The web is nothing, in simple term, it is a collection of web pages. What is Hypertext? H ypertext means that it is a way to web pages or HTML documents are linked together. If you want to access a page then you should have to click on the link. What is the Markup language? M arkup language means that it is used for the presentation of text on the web page and it specifies the formatting of code. And it also focuses on the layout of the page. SOME IMP POINTS. HTML is based on Tags , Elements and