NEW
Font size
WorksheetsG6- final Dec-2023/Jan-2024
Total questions: 25
Worksheet time: 14mins
What is not the tag for headings?
<h1>
<h2>
<h6>
<b>
How to insert a picture
<img>
<i>
<pic>
<p>
1. <h1>The Olympic game will be held in 2022</h1>
2. <h2>This time is Beijing to hold it</h2>
3. <p>It will be held in Chaoyang District</p>
4. <h6>All people have negative Covid test report are welcomed</h6>
From the former tags, which has the biggest font?
1
2
3
4
1. <h1>The Olympic game will be held in 2022</h1>
2. <h2>This time is Beijing to hold it</h2>
3. <p>It will be held in Chaoyang District</p>
4. <h6>All people have negative Covid test report are welcomed</h6>
From the former tags, which has the smallest font?
1
2
3
4
<body>
1. <h1>Choosing a Pet</h1>
2. <p>This page will help you choose between a dog, turtle, or a bird</p>
<h2>Turtles</h2>
3. <p.Turtles can also be fun, but they don't play with you. They will not make a mess of your room and they are quiet.</p>
4. <h2>Birds</h2>
</body>
Which one has the problem?
1
2
3
4
What is the meaning of <i>?
Insert the Image
Underline the font
Italicize the font
Input
What is the meaning of <img>?
Insert images
Imagination
Specifies an image as a server-side image map
Italicize the image
How to insert an image?
<img> picture.jpg</img>
<i> picture</i>
<img src="picture.jpg" alt="piccc">
<picture> picture.jpg</picture>
What is <p> for?
paragraph
postpone
past
parallel
What is debug?
Defense the bug in nature
Finding the problem and fixing it
HTML
Computer problems
These four sentences are from four webpages separately. Which cannot be shown when you run these pages? From the text:
<p>Dogs are the most work, but they are also the most fun. You have to walk them every day, but they love you and will always play with you.</pa>
<h2>Turtles</h2>
<p>Turtles can also be fun, but they don't play with you. They will not make a mess of your room and they are quiet.</p>
<p>Birds kind of play with you, but they are a lot of trouble and might fly away or start flying all around your room and make a mess of it.</p>
Dogs are the most work, but they are also the most fun. You have to walk them every day, but they love you and will always play with you.
Turtles
Turtles can also be fun, but they don't play with you. They will not make a mess of your room and they are quiet.
Birds kind of play with you, but they are a lot of trouble and might fly away or start flying all around your room and make a mess of it.
Which one is correct for CSS format?
p {
color:blue;
}
p : {
color=blue;
}
p {
color= blue
}
p:{
color:blue;
}
h1 {
color: red;
font-size: 24px;
}
What is this meaning?
Change h1's font colour to red
Change font size of whole page to 24px
Change background colour to red
Change font size of whole page to 24px
Change h1's font colour to red
Change font size of h1 to 24px
Change background colour to red
Change font size of h1 to 24px
To show the page like this, which one is correct?
h1 {
color; red
font-size;24px
}
h3 {
font-size:;14px
color; aqua
text-align; right
}
<h1
color: red;
font-size: 24px;
>
<h3
font-size: 14px;
color:aqua;
text-align: right;
>
h1 {
color: red;
font-size: 24px;
}
h3 {
font-size: 14px;
color:aqua;
text-align: right;
}
<h1
color: red;
font-size: 24px;
>
<h3
font-size: 14px;
color:aqua;
text-align:right;
>
Which sentence is correct?
h1 {
color: red;
font-size: 24px;
}
h3 {
font-size: 14px;
color:pink;
text-align: right;
}
h2{
background-color:antiquewhite;
}
h1
color: red;
font-size: 24px;
}
h3 {
font-size: 14px;
color:pink;
text-align: right;
h2 :
background-color:antiquewhite;
<h1 >
color: red
font-size: 24px
<h3>
font-size: 14px
color:pink
text-align: right
<h2>
background-color:antiquewhite
h1 {
color: red;
font-size: 24px;
}
<h3
font-size: 14px;
color:pink;
text-align: right;>
h2{
background-color:antiquewhite;
}
Which could be the correct code for this and even change it?
h1 {
color: black;
fontsize: 24px;
}
h1 {
background= black;
font-size: 24px;
}
h1 {
fontsize: 24px;
fontweight: bold;
}
h1 {
font-size: 24px;
font-weight: bold;
}
Which is correct?
h1
{
rgb: (20,20,40)
}
h1{
color: rgb(210,100,66);
}
h1
{
rgb:
color(23,29,999)
}
h1
{
color: rgb{20,30,60};
}
What is rgb for?
For font size
For colour
For align
For font weight
Which example is correct?
<img>
picture.jpg
</img>
<img="picture.jpg">
<img src="picture.jpg" alt="picture">
<img src="picture" alt="picture.jpg">
Which one is correct?
The Image URL is: https://pbs.twimg.com/media/EfKADlvWAAE7P0p?format=jpg&name=small
<img src="https://pbs.twimg.com/media/EfKADlvWAAE7P0p?format=jpg&name=small" alt="dogeee">
</img src="https://pbs.twimg.com/media/EfKADlvWAAE7P0p?format=jpg&name=small" alt="dogeee">
</img src="dog.jpeg" alt="dogeee">
{img src="https://pbs.twimg.com" alt="dogeee"}
Which tag would you use to create a paragraph:
<pr></pr>
<p></p>
<para></para>
<par></par>
