Font size
WorksheetsIntro to HTML
Total questions: 15
Worksheet time: 11mins
Websites are made using which coding languages? (You can select multiple answers)
HTML
CSS
Javascript
Python
What language is responsible for the basic structure and format of the website?
HTML
CSS
Python
Javascript
Which language is responsible for the "style" of the website? (This includes colors, fonts, and positioning)
HTML
CSS
Python
Javascript
What are the different elements of HTML are called? (Example: <h1>, <p>, <title>)
Libraries
Tags
Events
Variables
Which tag specifies the name of the specific web page? (which is shown in the browser's title bar or in the page's tab)
<html>
<h1>
<p>
<title>
Which tag contains all elements of your web page? (all of your code will be inside these tags)
<html>
<h1>
<p>
<title>
Which tag is used to write a large heading?
<html>
<h1>
<p>
<title>
Which tag do we use to write paragraphs?
<html>
<h1>
<p>
<title>
Which line of code defines that this document is an HTML5 document?
<title>HTML</title>
<!DOCTYPE html>
<tag>HTML</tag>
<h1>HTML5</h1>
Where do we typically find the title of the website? (The title tags are typically located inside these tags)
In the <head> tags
In the <body> tags
In the <h1> tags
In the <p> tags
Where do we typically find all the visible contents, such as headings, paragraphs, images, hyperlinks, tables, lists, etc.?
In the <head> tags
In the <body> tags
In the <h1> tags
In the <p> tags
Which of the following heading tags is the largest?
<h1>
<h3>
<h5>
<h6>
What symbol do we use for our tags in HTML?
( )
Parenthesis
" "
Quotation Marks
{ }
Brackets
< >
Chevrons
Which of the following lines of code is an example of an anchor element? (how to write a hyperlink)
<www> Click here </www>
<body> Click here </body>
<link> Click here </link>
<a href=" "> Click here </a>
Which of the following is the proper way to close a paragraph tag in HTML?
</p>
Forward Slash
<;p>
Semicolon
<:p>
Colon
<"p">
Quotation Marks
