HTML
HTML
CSS
CSS
JavaScript (5x)
100
What is the correct HTML tag for the largest heading size?
h1
100
What is one tag used for italicizing text?
Answer: or
100
What does CSS stand for?
Cascading Style Sheets
100
The # symbol specifies which CSS selector?
ID
100
In which section of HTML is the JavaScript placed?
The section is used most often, but is also acceptable.
200
Fill in the blank to correctly insert an image using HTML.
Answer:
200
Which tag is used in HTML, to create a numbered, or ordered list?
Answer:
    200
    What is the correct CSS syntax for making all

    tags 16px

    p {font-size:16px;}
    200
    The . symbol specifies which CSS selector?
    Class
    200
    How do you write a comment in JavaScript?
    //This is a single-line comment /*This is a multi- line comment*/
    300
    What does HTML stand for?
    Hyper Text Markup Language
    300
    Fill in the blank, to correctly insert a link in HTML: Bing
    Answer: Bing
    300
    In the following code, what value is given for the left margin? margin: 5px 10px 3px 8px;
    8px
    300
    Within which two immediate tags do you place internal CSS (Not inline)?
    A:
    300
    What is the correct way to refer to an external JavaScript file?
    A:
    400
    What is the correct HTML tag to insert a line break?
    Answer:
    400
    Name two HTML file extensions.
    .html, .htm, or .shtml
    400
    How do you add a comment CSS?
    /* This is a comment */
    400
    How would you create a border around a
    with the top margin 15px, the bottom margin 10px, the left margin 6px, and the right margin 4px?
    div {border:15px 4px 10px 6px;}
    400
    How do you create a function in JavaScript?
    function myFunction()
    500
    When you place JavaScript on an HTML page, within which two immediate tags would you place it?
    Answer:
    500
    How can you open a link in a new tab? Fill in the blank:
    A:
    500
    What is the correct property to change the text color of an element?
    p{color:red;}
    500
    Which is commonly used to center a webpage or div horizontally? body {margin: _ _ _ _ ;}
    body {margin: auto;}
    500
    How does a For Loop start? for (___;___;___)
    for (i = 0; i <= 5; i++)
    M
    e
    n
    u