Posts

Showing posts from April, 2023

More about html tags

 More about html tags <HEAD> Heading tag </HEAD> Element contains meta information about the HTML page and it has closing tag. It is a heading tag. Using this tag will format any text between these opening and closing tag as indicates that main heading   <H2> SUB HEADING </H2> Element contains meta information about the HTML page and it has closing tag. It is a heading tag. Using this tag will format any text between these <h2>opening and closing </h2> tag as indicates that sub heading.   <h1> Heading 1 </h1> <h2> Heading 2 </h2> <h3> Heading 3 </h3> <h4> Heading 4 </h4> <h5> Heading 5 </h5> <h6> Heading 6 </h6>   <title> TITLE TAG </title>   Element indicates a title for the HTML page which is seen on top of the page   < body> Body Tag </body > Indicates that documents body, and is a container...

IS LEARNING HTML TOUGH ???

Image
  Introduction about HTML 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 < > .</> Let’s get into the main topic regarding tags: Main tags used in HTML is <HTML></HTML> 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...