Computer Science, asked by shubhanshuw9526, 10 months ago

Define html explain any four html tags with syntax for them

Answers

Answered by cxsfgjasj
0

Answer:

TD, close TD ,tr, close tr.

Explanation:

these are your answer please mark my answer the brainliest

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>

Basic HTML Document Structure

<!DOCTYPE html>

<html lang="en">

<head>

<meta charset="utf-8">

<title>Basic HTML document</title>

</head>

<body>

.

.

.

.

.

.

</body>

</html>

HTML Tags

<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. example: meta, title etc.

<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:

Explain with the help of code, how audio and video clips can be added in an HTML document.

https://brainly.in/question/12626074

Similar questions