Draw This - beginner
Draw a simple diagram showing how HTML structures a basic web page with a header, a main content area, and a footer. Label each part clearly.
5 minutes
Hint 1
Hint 2
Hint 3
Draw a simple diagram showing how HTML structures a basic web page with a header, a main content area, and a footer. Label each part clearly.
+-----------------------------+ | <header> | | (Website title or menu) | +-----------------------------+ | <main> | | (Main content of the page) | +-----------------------------+ | <footer> | | (Contact info or copyright)| +-----------------------------+
This diagram shows a simple structure of an HTML web page. The <header> section is like the top part of a house where you might have the title or navigation menu. The <main> section is the main room where the important content goes. The <footer> is like the bottom part of the house where you put contact information or copyright details. Each box represents a part of the page that HTML helps organize.