Font size
WorksheetsIntro to HTML and CSS- Lecture 1 Review (HTML)
Total questions: 15
Worksheet time: 6mins
What is web development?
Creating a website
Developing as spider web
Making the internet
Building a computer
What is HTML?
(select all correct answers)
HyperText Markup Language
Basic building block of the web
You can create your own website with HTML
A language used for web development
What is always the first line in HTML?
<html>
<!DOCTYPE HTML>
<body>
<head>
What goes after <!DOCTYPE HTML> ?
<html>
<body>
<head>
</!DOCTYPE HTML>
<head> and <body> elements are in the <html> element
True
False
Which header symbolizes the most importance?
<h1>
<h3>
<h5>
<h6>
Which header symbolizes the least importance?
<h1>
<h3>
<h5>
<h6>
What is an empty tag?
</tagname>
A tag that does not have a name
Tags that does not have an end tag
An empty space
Which tags do we use when we write a paragraph?
<head> </head>
<br>
<p> </p>
<a> </a>
What is <hr> ?
(select all correct answers)
Horizontal ruler
Empty tag
A horizontal line going across the screen
Can be used to separate content
Which type of lists did we learn?
(select all correct answers)
Unordered List
Ordered List
Description List
All of the above
Unordered List is bullet points
True
False
Ordered List is bullet points
True
False
What is true for images?
(select all correct answers)
Uses the <img> tag
Empty tag
Uses the src attribute to specify the location of the image
Structure looks like this:
<img src = "image.png">
