Html Flashcards
(7 cards)
What should be added after a file name to indicate it’s an HTML file?
.Html
What is the basic structure of an HTML document?
The basic structure includes:
* <!DOCTYPE html>
* <html>
* <head>
* <title>Page Title</title>
* <body>
* <!-- Content goes here -->
* </body>
* </html>
Fill in the blank: The file declaration for an HTML document starts with _______.
<!DOCTYPE html>
True or False: The <head> section of an HTML document is where the content is displayed.
False
What is the purpose of the <title> tag in HTML?</title>
To define the title of the webpage that appears in the browser tab.
What is indicated by the <body> tag in an HTML document?
It contains the content that is displayed on the webpage.
What does the comment <!-- Content goes here --> signify in HTML?
It indicates a placeholder for where content should be placed.