HTML(hyper text markup language)

HTML(hyper text markup language)

Table of contents

No heading

No headings in the article.

this blog which includes most of all the html concepts.let us consider

image.png

this would be the stracture of the html.it generally say it is html type document and then we can specify the language.if we want the web page in english we generally set html language="english".

HEAD SECTION

then "head"elemental tag .in this section we generally specify the titleof the web page .and if want to link in css page.then it specify in the head section.genrally whatever we write in the head section it cannot be displyed on web pages

BODY SECTION

body elemental tag in the html which is generally parent elemental tag of all elements.whatever we want to display on the web pages that must written under the body elemental tag

  1. anything displyed on the web pages must be written on the body elemental tag THIS WOULD BE THE STRACTURE OF THE HTML PAGE WHICH CONSIST HEAD AND THE BODY SECTIONS.

ELEMENTAL TAGS IN HTML

there are different kind of html elemental tags in the html.let seemost of the elements

image.png

the heading tag used to write heading of the web pages.generally 6 different kind of headings can be used in the web pages.they are h1,h2,h3,h4,h5,h6.among all of them h1 tag has the highest priority. h6 taghas the least priority.

  1. heading tag for write the heading of web page.

  2. used to separate the headings and sub headings of the web page.

  3. these are mainly header elements.

  4. they rank in order of importance from h1t0 h6

  5. these header tags which improve the readbality of the web page.

IMAGE TAG

image.png

IMAGE TAG generally used to add the images to the web pages.

  1. when we are using the image tag it is not technically inserted into the web pages instead of that it generally link the image to the web page.

  2. <img> this tag which holds the space for the refernce image.

  3. <img src="link of the image"alt="describing the image"</img> the alt="".this can be used to describe the image.so the search engine which came to known that what the image is describing about.hence it is important thing to mention it.

ANCHOR TAG

image.png

anchor tag or hyper link used to add the links to the web pages simply.

  1. these are hyperlinks or simply a link is a digital reference to a data that the user can fallow.it can be fallowed by clicking or tapping.

  2. these hyperlinks point to a whole document or to specific element with in adocument

  3. these text which is linked using the anchor tag element.

LISTS IN HTML

in html there are two kinds of the lists they are

  1. ordered list

  2. unordered list

the listing of elements can be done through the either order or unorder list

the unorder list which would be given by

image.png

   <ul></ul> this tag generally used to specify it is un ordered list.
     <li></li> this can be basically used to make the items into list.

listing of items can be done through the bullet points.

if we want numbering the list of items can be done by using the ordered list

ORDERED LIST

  1. an orderd list defines the list of the items in which the order of items are matters

  2. this can be also called as the number list.

  3. the ordering can be done through the numbering.

   <ol></ol> this ordered list tag is used to create ordered list.

CONTAINER ELEMENTS IN HTML.

these container elements which contain the most of the most of the elements or grouping of the elements can be done by using the container element.

these container elements which can be very helpfull in stracturing the web page.some of the container elements are

  • header element
  • footer element
  • nav element
  • article ele