Write all HTML tags and also write the structure of HTML page
Answers
Answered by
0
Answer:
Explanation:Html tags
1. Html
2 head
3 title(inside head)
4 body
Structure
Attachments:
Answered by
0
Answer:
There are lot of html tags used in writing HTML code. Here are some of the basic tags :
<!DOCTYPE html>
<html>
<head>
<title>
<body>
<h1>
<h2>
<h3>
<h4>
<h5>
<h6>
<p>
<span>
<hr />
<br />
<img />
Here is the basic structure :
<!DOCTYPE html>
<html>
<head>
<title>My Webpage Title</title>
</head>
<body>
<h1>My first heading</h1>
<body>
</html>
Explanation:
There are still lot more tags. If you are interested to learn more on HTML, here is a free course on HTML for beginners level.
https://codewithrasbin.com/html-for-beginners-course-lesson-3-html-introduction-and-tools-to-write-html-code/
Hope this helps!
Similar questions