structure of html documents
Answers
Answered by
3
Basic structure of an HTML document. An HTML document has two* main parts: head. The head element contains title and meta data of a web document.
Answered by
0
Answer:
Here is the basic structure.
<!DOCTYPE html>
<html>
<head>
<title>My Webpage Title</title>
</head>
<body>
<h1>My first heading</h1>
<body>
</html>
Explanation:
If you want to learn HTML for beginners level, here is a good resource
https://codewithrasbin.com/html-for-beginners-course-lesson-3-html-introduction-and-tools-to-write-html-code/
Hope this helps!
Similar questions