NEW
Font size
WorksheetsFront End Forge Final
Total questions: 25
Worksheet time: 8mins
Which of the following HTML markup uses semantic HTML to create a top-level (large and important) heading?
<h1>This Heading is Important</h1>
<p >This Heading Sure Looks Important</p>
<h4>No, This Heading is More Important</h4>
There is no way to do this.
Choose the correct HTML element to define important text
<important>
<b>
<i>
<strong>
Which character is used to indicate an end tag?
;
\
/
!
How can you open a link in a new tab/browser window?
<a href="url" target="new">
<a href="url" target="_blank">
<a href="url" new>
Which of these elements are all <table> elements?
<table><tr><td>
<table><tr><tt>
<thead><body><tr>
<table><head><tfoot>
Inline elements are normally displayed without starting a new line.
True
False
How can you make a numbered list?
<ul>
<li>
<ol>
<num>
Which tag is used to create a hyperlink?
<link>
<lb>
<href>
<a>
Which of the following answer options is not an HTML attribute?
alt
id
class
fontSize
What is the HTML form input used to send information of the form to the server?
<input type="server">
<input type="submit">
<input type="send">
<input type="mail">
How do you select all paragraphs in CSS?
p
#paragraph
.paragraph
*
What is the purpose of the CSS float property?
It makes text bold.
It specifies the alignment of an element.
It positions an element to the left or right of its container.
It changes the font family of an element.
How do you include an external CSS file in an HTML document?
<style src="styles.css">
<link rel="stylesheet" href="styles.css">
<script type="text/css" src="styles.css"></script>
<css src="styles.css">
How can we change the background color of an element?
background-color
color
background
None of the above
How can we change the text color of an element?
background-color
color
text-color
None of the above
In how many ways can CSS be written in?
1
2
3
4
How can we select an element with a specific ID in CSS?
#id
.id
*id
None
In the below code snippet, in what order will the margins be added?
p { margin: 25px 50px 75px 100px; }
Top,Left, Bottom,Right
Top,Bottom,Right,Left
Left,Right,Top,Bottom
Top,Right,Bottom,Left
The CSS property used to specify the transparency of an element is?
opacity
visibility
filter
hidden
How can we specify the spacing between each letter in a text in CSS?
white-space
character-spacing
letter-spacing
alpha-spacing
Javascript is an _______ language?
Object-Oriented
Object-Based
Procedural
None
Which of the following is used to create a variable in JavaScript
var
let
Both var & let
None
Which of the following methods is used to access HTML elements using Javascript?
getElemetByClassName()
getElementById()
Both getElemetByClassName() & getElementById()
document.write()
How can a datatype be declared to be a constant type?
let
const
var
constant
Which of the following is a JavaScript Library/Framework
DJango
Both Vue & React
Vue
React
