Computer Science, asked by satyam5728, 1 year ago

explain the HTML tag​

Answers

Answered by namanyadav00795
3

What is HTML?

HTML = Hyper Text Markup Language

Unlike a scripting or programming language that uses scripts to perform functions a markup language uses tags to identify content.

example:  <p> I am a paragraph </p>

HTML Tags

HTML tags are a set of characters constituting a formatted command for a Web page. some examples-

<html> Tag

  • every HTML document has opening and closing  tags.

                                      <html>

                                                    .

                                                    .

                                      </html>

  • <html> tag surround everything in the document.

<head> Tag

  • <head> tag is immediately followed by <html> tag
  • <head>....</head>
  • <head> tag contains all of the non-visual elements that help make the page works. Examples meta, title

<body> Tag

  • the <body> tag follows the <head> tag.
  • All visual structural elements are contained withn the <body> tag. example: headings, paragraphs, lists, quotes, images, links etc.

                        <body>

                                  .

                                  .

                       </body>

<title> Tag

  • to place a title on the browser tabs describing the webpage we use <title> tag in <head> tag.

                        <html>

                                  <head>

                                              <title>Home</title>

                                   </head>

                                   <body>

                                              here is all the content of page                                                                                  .

                                               .

                                  </body>

                       </html>

More Question:

Ctrl, Shift and Alt are called __________ keys.

(1) adjustment (2) function  (3) modifier (4) alphanumeric  (5) None of these

https://brainly.in/question/5169088

Similar questions