Computer Science, asked by manshahayaat1945, 1 year ago

Explain structure of HTML document by giving a simple example of an HTML document.

Answers

Answered by kurokiri67
13
here's a basic structure
hope it helps
Attachments:
Answered by rasbinsoundlines
13

Answer:

Here is the basic structure of HTML document with a simple example

<!DOCTYPE html>

<html>

  <head>

      <title>My Webpage Title</title>

  </head>

  <body>

       <h1>My first heading</h1>

  <body>

</html>

Explanation:

You can find good explanation on this blog page.

https://codewithrasbin.com/html-for-beginners-course-lesson-3-html-introduction-and-tools-to-write-html-code/

Similar questions