Worksheetshtml basics
Total questions: 11
Worksheet time: 6mins
Which image is correctly coded?
<img scr="images/food1.jpg" alt="image of a chocolate cake">
<img src= "IMAGES/FOOD1.jpg" alt="image of a chocolate cake">
<img src="images/food1.jpg" alt="image of a chocolate cake">
<img src= "images/Food1.jpg" alt="image of a chocolate cake">
What is missing? (Choose 1 or more)
<p>Cake is a form of sweet food made from flour, sugar, and other ingredients that are usually baked. In their oldest forms, cake were modifications of bread, but cakes now cover a wide range of preparations that can be simple or elaborate.
<p>
</p>
</P>
An ending paragraph tag
What file do curly brackets go into? { }
index.html
morefood.html
images folder
style.css
What do <b> </b> tags do?
Make text look big
Make text look bold
Make the heading look big
Make the title look big
Which heading tag is the main heading?
<h6> </h6>
<h2> </h2>
<h1> </h1>
<h3> </h3>
Which heading tag is the smallest sub-heading?
<h6> </h6>
<h2> </h2>
<h1> </h1>
<h3> </h3>
What files sit in your root folder (e.g. Practice Folder)
html files
(e.g. index.html & morefood.html)
css file
(e.g. style.css)
html and css files
index.html
What does HTML stand for?
Hypertext language
Hypertext Marking Language
Hyper Markup Language
Hypertext Markup Language
What are TWO common reasons for errors in code?
Spelling mistake
Capital letters instead of lowercase letters
Missing a > bracket on the line above or below
Missing "quotation marks"
What does the <hr> tag do?
Human Resources
Heading
Horizontal Rule (e.g. straight line)
Horizontal
What does this line of code do?
<link rel="stylesheet" href="style.css">
It creates a hyperlink
It doesn't do anything
It links your style.css file to your html files to format the layout of your web pages
