NEW
Font size
WorksheetsUnit 10: Web Development Fundamentals
Total questions: 30
Worksheet time: 15mins
HTML stands for ...
HyperText Makeup Language
Hyperlinks and Text Markup Language
Home Tool Markup Language
HyperText Markup Language
CSS stands for ...
Computer Style Sheets
Cascading Style Sheets
Creative Style Sheets
Colorful Style Sheets
JavaScript is a __________ that works alongside with HTML and CSS.
structuring language
styling language
programming language
markup language
The correct HTML tag for the largest heading is ...
<header>
<h1>
<h2>
<h3>
The correct CSS property name to change text color is ...
text-color
font-color
style-color
color
Which character is used to indicate an end tag?
/
<
:
;
CSS describes the _______ of the website.
structure
programming
styling
markup
What are the two ways that JavaScript is placed into HTML?
External JS and Internal JS
External JS and Inline JS
Internal JS and Inline JS
External JS only
What is the HTML attribute that is used for creating a link?
ALT
SRC
HREF
URL
What is the correct CSS property name to change font?
font
font-family
font-type
font-style
HTML describes the _________ of the website.
programming
styling
structure
interactivity
What character starts and ends a declaration in CSS?
square brackets
arrows
parentheses
squiggly/curly brackets
What are the two places that JavaScript is placed within HTML?
<head> and <body> sections
<head> and <section> sections
<header> and <p> sections
<header> and <body> sections
What is the HTML tag that creates a numbered list?
<ul>
<li>
<ol>
<nl>
What character separates the property name and value in CSS?
space
semicolon
colon
squiggly/curly brackets
Why is web development important?
Gain access to information and resources quickly
Provides individuals and businesses with the power to establish offline presence
Provide and receive global disconnection
All of the given options
What are the ways to insert CSS into HTML?
External and Internal only
External, Internal, and Online
External, Internal, and Inline
Internal and Inline only
HTML DOM stands for ____________ and is a _______ that is constructed like a __________________.
HTML Document Object Modification, Model, and Tree of Objects
HTML Document Objective Momentum, Model, Tree of Objectives
HTML Document Overview Model, Model, and Tree of Overview
HTML Document Object Model, Model, and Tree of Objects
What is the HTML tag that defines and creates navigation links?
<link>
<nav>
<a>
<links>
JavaScript statements contain _____, _____, _____, _____, and _____, and each statement is separated by a _____.
Values, Operators, Expressions, Keywords, Comments, and Semicolon
Values, Operators, Expressions, Keywords, Comments, and Colon
Values, Semicolons, Expressions, Keywords, Colons, and Operator
Values, Operators, Expressions, Keywords, Colons, and Comment
What is the HTML attribute that displays as a tooltip when the mouse hovers over the element?
Lang
Style
Title
Href
What are the two elements found in the CSS Syntax?
Selector and Declaration
Property Name and Value
HTML and Declaration
Selector and Description
What power does JavaScript HTML DOM have?
The power to remove HTML elements and attributes
The power to change HTML elements attributes and CSS styles
The power to add new HTML elements and attributes
All of the given options
What is the correct HTML tag for inserting an image?
<image style="image.gif" alt="MyImage">
<image src="image.gif" alt="MyImage">
<img src="image.gif" alt="MyImage">
<img href="image.gif" alt="MyImage">
Which of the following is one of JavaScript's eight data types?
Array
Defined
Date
None of the given options
Where in an HTML document is the correct place to refer to an external style sheet?
In the <head> section
In the <body> section
Both in the <head> and <body> sections
At the end of the document
Inside which HTML tag do we put the JavaScript?
<scripting>
<style>
<script>
<javascript>
What is the correct JavaScript syntax to change the content of the HTML element below?
<p id="demo">This is a demonstration.</p>
document.getElement("p").innerHTML = "Hello World!";
#demo.innerHTML = "Hello World!";
document.getElementByName("p").innerHTML = "Hello World!";
document.getElementById("demo").innerHTML = "Hello World!";
What is the correct HTML for adding a background color?
<body style="bg="yellow">
<background>yellow</background>
<body bg="yellow;">
<body style="background-color: yellow;">
True or False: Inline elements are normally displayed without starting a new line.
True
False
