Computer Science, asked by aman546, 1 year ago

structure of html documents

Answers

Answered by Nisar7861
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 rasbinsoundlines
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