Sololearn HTML course Overview answers
Here are all the questions and answers that I hope will help you learn HTML course.
Other course answers
Sololearn HTML course HTML Basics answers
Sololearn HTML course Challenges answers
Sololearn HTML course HTML5 answers
1.1 Lesson
What is HTML?
Question:
Is HTML used for creating websites?
Answer:
Yes
Question:
Welcome to HTML!
HTML code is used to
Answer:
structure the content of a web page
Question:
From HTML code to Web Pages
True or false? Web browsers read HTML code to display the resulting web page
Answer:
True
Question:
Text Paragraphs
Which of the following is the valid paragraph tag?
Answer:
<p>
Question:
Opening and Closing Tags
Drag and drop to create a valid paragraph element with the content "I'm a paragraph".
Answer:
<p>I'm a paragraph</p>
Question:
HTML Elements
Which of the following will create a text paragraph on a web page?
Answer:
<p>Paragraph 1</p>
Question:
Lesson Takeaways
Select the only true statement
Answer:
HTML controls the structure of a web page
2.1 Lesson
HTML Elements
Question:
Writing HTML code
You can use the Code Playground to write, run and test code.
Answer:
TRUE
Question:
More HTML Elements
What’s the HTML tag for a Level 1 heading element?
Answer:
<h1>
Question:
Text Headings
Drag and drop to create text headings of two different levels
Answer:
<h1>Food Menu</h1>
<h2>Starters</h2>
Question:
Container Tags
Drag and drop to create valid HTML code
Answer:
<h1>Section 1</h1>
<h2>Chapter 3</h2>
<p>Once upon a time …</p>
Question:
Image Tags
Drag and drop to create a valid image tag in HTML
Answer:
<img src="http://www.sololearn/image.jpg">
Question:
Lesson Takeaways
Select all of the true statements
Answer:
Images don't require a closing tag
Images are examples of empty tags
3.1 Lesson
Creating Your First HTML Page
Question:
The HTML File
What type of editor is used to edit HTML code?
Answer:
text editor
Question:
The HTML File
What is the correct extension for HTML files?
Answer:
.html
Question:
The <head> Tag
Drag and drop from the options below to create a valid HTML document:
Answer:
<html>
<head> </head>
</html>
Question:
The <title> Tag
Where should you put the title tag?
Answer:
Between the head tags
4.1 Lesson
Creating a Blog
Question:
Creating a Blog
Fill in the blanks to add a title to the html page.
Answer:
<html>
<head>
<title>My Blog</title>
</head>
</html>
5.1 Lesson
Module 1 Quiz
Question:
What is HTML?
Answer:
Markup Language
Question:
Of which main parts does the HTML file consist of?
Answer:
head and body
Question:
Which tag contains the visual part of the web page?
Answer:
<body>
Question:
Fill in the blanks:
Answer:
<html>
<head>
</head>
<body>This is a line of text. </ body>
</html>