Font size
WorksheetsWeb Auth 2
Total questions: 58
Worksheet time: 36mins
what is the missing line for <datalist>
Class="Major"
id="Major"
value="Major"
list="Major"
What is the method to convert a String to Integer
(a)
what is the value?
60%
60
100
100%
Complete the missing
(a)
what does <source> tag do in video element
The browser will use the first recognized video format.
to specify the source of the video.
no such tag
external video source
Which tag is used to write a decription for a figure
<figcaption>
<captionfig>
<description>
<p>
Div element can be placed in the header
True
False
How to create a sidebar
<div>
<sidebar>
<aside>
<section>
<header>, <footer>, <hr>, <aside> is an example of
No corrent answer
inline elements
HTML 5 Structure elements
block elements
what is the tag to set a visible title, which, when clicked, will open/close additional information.
(a)
CSS stands for
(a)
h1 {color:blue;} h1 is a
(a)
h1 {color:blue;} color is a
(a)
h1 {color:blue;} blue is the
(a)
Wrtie the missing: •<link href="stylesheet.css">
(a)
How to change the font to italic
font-weight:italic
font-weight:italic;
font-style:italic
no correct answer
How to define the color in CSS using HEX:
#00000;
black;
rgb(red, green, blue);
hsl(0 0% 100% /0.1);1 em =
16px
current font size
24px
half of the cuurent font size
These are examples of
Selectors
Pseudo-Classes
CSS tags
CSS property
These are example of
Pseudo-Classes Selectors
Pesudo-Elements Selectors
CSS decleration
CSS value
CSS3 features, select the incorrect one
supports responsive design
3D transformations
can be split into modules
old and standard colors
Type of CSS Gradients
(a)
Create Glow effect with color white and blur of 20px
(a)
the second 0 value is to control
horizontal shadow
vertical shadow
rule allows custom fonts to be loaded on a webpage
font-family
@font-face
@font-family
font-face
a property specifies how overflowed content that is not displayed should be signaled to the user.
word-wrap
word-break
text-overflow
writing-mode
text-overflow value that will render the overflowed text as ("...")
(a)
word-break value thw will break the text at hyphens
break-all
break-word
keep-all
break
Choose 2 of writing mode values
horizontal-tb
horizontal
vertical-rl
vertical
what does (overflow: auto;) do
none is correctinvisible contentadd scrollbaradds scrollbars only when necessary(background-size: contain;) will tell the browser to make sure the image always covers the entire container, even if it must stretch the image or cut a little bit off one of the edges
True
False
In order to create the most efficient full-page backgrounds, you need to ensure that. (selecet the most correct answer)
background-size: contain
body {height: 100%;}
body,html {height: 100%;}
body,html {width: 100%;}
An example of transform skew
to double the size using: transform: sacle(); the value will be
double
2
200
"200"
used to define number of columns
column-span
column-count
column-rule
column-gap
to reach this result for h2
h2 {column-span: all;}
h2 {column-span: above;}
h2 {column-gap: 50px;}
h2 { column-gap: above;}
What is the curve speed for Ease
specifies a transition effect with the same speed from start to end
specifies a transition effect with a slow start and end
specifies a transition effect with a slow start, then fast, then end slowly
specifies a transition effect with a slow end
To define the animation, we use the code :
(a)
what is missing to apply the animation
animation-name
animation-name, animation-duration
animation-name,animation-time
animation-time
(Animation-iteration-count: ) specify the value to make the animation loops
(a)
<meta name="" content="width=device-width, initial-scale=1.0">
fill the blank(a)
vw stands for
font size measurement unit
vertical width
viewport’s width
no correct answer
(screen) is the
Media Type
Rule
Media Feature
selector
applied by default on initializing display: flex;
flex-direction:column;
flex-wrap:no-wrap;
flex-basis:1;
flex-grow:1;
Choose the correct named javascript variable
F name
_2b_89x_0
1stname
9_F-name
Boolean will return
int
String
Number
True or False
to read the user input in jacascript we use
Alert
Prompt
input
Confirm
an example of an array
var colors = ["red","blue"];
var colors = {"red","blue"};
var colors = {"red","blue"}
var colors = ("red","blue");
Array name of (myarray[0])
there's no such array
empty array
0 based
0 index array
indexOf: “some word”.indexOf(“w”)
5
4
9
10
Why do we need to make the website accessible for senior citizens
senior citizens has more advertising power then any other citizens
respect the elders
Strong purchasing power
80% of website customers are senior citizens
According to World Health Organization the population of people with disabilities are
30%
35%
15%
20%
jQuery is a
Javascript extention
Javascript Libary
Javascript function
Javascript variable
line of code that will make sure to start jQuery only if the page is fully loaded
$(document).ready
(function(){};
$(document.ready)
(function(){
});
$(function(){
});
$(function(){};
we want to remove the content from #div1
$("#div1").remove();$("#div1").empty()we want to remove #div1
$("#div1").empty()$("#div1").remove();we want to add text to #add
$("#add").append("added text")$("#add").text("added text")we want to change the text inside #add
$("#add").append("changed text");$("#add").text("changed text");