W3Schools Quiz Results

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 18

2/2/2021 W3Schools Quiz Results

  HTML CSS MORE  EXERCISES   


w3schools.com LOG IN

Uni ed CI/CD Across Platforms


Run Windows jobs on fresh, dedicated VM’s created and destroyed for every job. CircleCI

HTML Quiz Results


Score: 18 of 40

45% Correct:

Question 1:
What does HTML stand for?

 Hyper Text Markup Language     Your answer  

Hyperlinks and Text Markup Language

Home Tool Markup Language

Question 2:
Who is making the Web standards?

 The World Wide Web Consortium     Your answer  

Mozilla

Microsoft

Google
https://www.w3schools.com/quiztest/result.asp 1/18
2/2/2021 W3Schools Quiz Results

  HTML CSS MORE  EXERCISES   

Question 3:
Choose the correct HTML element for the largest heading:

 <h1>     Your answer  

<heading>

<h6>

<head>

Question 4:
What is the correct HTML element for inserting a line break?

 <br>     Your answer  

<break>

<lb>

Question 5:
What is the correct HTML for adding a background color?

 <body style="background-color:yellow;">     Your answer  

<body bg="yellow">

<background>yellow</background>

Question 6:
https://www.w3schools.com/quiztest/result.asp 2/18
2/2/2021 W3Schools Quiz Results

Choose the correct HTML element to define important text


  HTML CSS MORE  EXERCISES   

 <strong>     Your answer  

<i>

<important>

<b>

Question 7:
Choose the correct HTML element to define emphasized text

 <em>     Your answer  

<i>

<italic>

Question 8:
What is the correct HTML for creating a hyperlink?

 <a url="http://www.w3schools.com">W3Schools.com</a>     Your answer  

<a name="http://www.w3schools.com">W3Schools.com</a>

<a href="http://www.w3schools.com">W3Schools</a>     Correct answer  

<a>http://www.w3schools.com</a>

Question 9:
Which character is used to indicate an end tag?

https://www.w3schools.com/quiztest/result.asp 3/18
2/2/2021 W3Schools Quiz Results

/  
  HTML CSS MORE    Your
EXERCISES  answer  
 

<

Question 10:
How can you open a link in a new tab/browser window?

 <a href="url" target="new">     Your answer  

<a href="url" target="_blank">     Correct answer  

<a href="url" new>

Question 11:
Which of these elements are all <table> elements?

 <table><tr><td>     Your answer  

<thead><body><tr>

<table><tr><tt>

<table><head><tfoot>

Question 12:
Inline elements are normally displayed without starting a new line.

 False     Your answer  


https://www.w3schools.com/quiztest/result.asp 4/18
2/2/2021 W3Schools Quiz Results

 True   HTML
 CSS MORE    Correct
EXERCISES  answer  
 

Question 13:
How can you make a numbered list?

 <list>     Your answer  

<ul>

<dl>

<ol>     Correct answer  

Question 14:
How can you make a bulleted list?

 <ul>     Your answer  

<list>

<dl>

<ol>

Question 15:
What is the correct HTML for making a checkbox?

 <input type="check">     Your answer  

<checkbox>

<input type="checkbox">     Correct answer  


https://www.w3schools.com/quiztest/result.asp 5/18
2/2/2021 W3Schools Quiz Results

 <check>
 HTML CSS MORE  EXERCISES   

Question 16:
What is the correct HTML for making a text input field?

 <input type="textfield">     Your answer  

<input type="text">     Correct answer  

<textfield>

<textinput type="text">

Question 17:
What is the correct HTML for making a drop-down list?

 <input type="dropdown">     Your answer  

<select>     Correct answer  

<list>

<input type="list">

Question 18:
What is the correct HTML for making a text area?

 <input type="textarea">     Your answer  

<textarea>     Correct answer  

<input type="textbox">
https://www.w3schools.com/quiztest/result.asp 6/18
2/2/2021 W3Schools Quiz Results

  HTML CSS MORE  EXERCISES   


Question 19:
What is the correct HTML for inserting an image?

 <image src="image.gif" alt="MyImage">     Your answer  

<img src="image.gif" alt="MyImage">     Correct answer  

<img alt="MyImage">image.gif</img>

<img href="image.gif" alt="MyImage">

Question 20:
What is the correct HTML for inserting a background image?

 <body style="background-image:url(background.gif)">     Your answer  

<background img="background.gif">

<body bg="background.gif">

Question 21:
An <iframe> is used to display a web page within a web page.

 There is no such thing as an <iframe>     Your answer  

True     Correct answer  

False

Question 22:
HTML comments start with <!-- and end with -->
https://www.w3schools.com/quiztest/result.asp 7/18
2/2/2021 W3Schools Quiz Results

True   HTML
  CSS MORE    Your
EXERCISES  answer  
 

False

Question 23:
Block elements are normally displayed without starting a new line.

 True     Your answer  

False     Correct answer  

Question 24:
Which HTML element defines the title of a document?

 <title>     Your answer  

<head>

<meta>

Question 25:
Which HTML attribute specifies an alternate text for an image, if the image cannot be displayed?

 alt     Your answer  

longdesc

title

src

https://www.w3schools.com/quiztest/result.asp 8/18
2/2/2021 W3Schools Quiz Results

Question
 HTML 26: CSS MORE  EXERCISES   

Which doctype is correct for HTML5?

 <!DOCTYPE HTML5>     Your answer  

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 5.0//EN"


"http://www.w3.org/TR/html5/strict.dtd">

<!DOCTYPE html>     Correct answer  

Question 27:
Which HTML element is used to specify a footer for a document or section?

 <section>     Your answer  

<footer>     Correct answer  

<bottom>

Question 28:
In HTML, you can embed SVG elements directly into an HTML page.

 False     Your answer  

True     Correct answer  

Question 29:
What is the correct HTML element for playing video files?

 <media>     Your answer  

https://www.w3schools.com/quiztest/result.asp 9/18
2/2/2021 W3Schools Quiz Results

 <movie>
 HTML CSS MORE  EXERCISES   

<video>     Correct answer  

Question 30:
What is the correct HTML element for playing audio files?

 <sound>     Your answer  

<mp3>

<audio>     Correct answer  

Question 31:
The HTML global attribute, "contenteditable" is used to:

 Specify whether the content of an element should be editable   Your answer  


or not  

Return the position of the first found occurrence of content inside a string

Specifies a context menu for an element. The menu appears when a user right-
clicks on the element

Update content from the server

Question 32:
In HTML, onblur and onfocus are:

 Event attributes     Your answer  

Style attributes
https://www.w3schools.com/quiztest/result.asp 10/18
2/2/2021 W3Schools Quiz Results

 HTMLHTML
 elements CSS MORE  EXERCISES   

Question 33:
Graphics defined by SVG is in which format?

 HTML     Your answer  

CSS

XML     Correct answer  

Question 34:
The HTML <canvas> element is used to:

 create draggable elements     Your answer  

draw graphics     Correct answer  

manipulate data in MySQL

display database records

Question 35:
In HTML, which attribute is used to specify that an input field must be filled out?

 required     Your answer  

placeholder

formvalidate

validate
https://www.w3schools.com/quiztest/result.asp 11/18
2/2/2021 W3Schools Quiz Results

  HTML CSS MORE  EXERCISES   

Question 36:
Which input type defines a slider control?

 slider     Your answer  

search

controls

range     Correct answer  

Question 37:
Which HTML element is used to display a scalar measurement within a range?

 <measure>     Your answer  

<meter>     Correct answer  

<gauge>

<range>

Question 38:
Which HTML element defines navigation links?

 <nav>     Your answer  

<navigate>

<navigation>

https://www.w3schools.com/quiztest/result.asp 12/18
2/2/2021 W3Schools Quiz Results

Question
 HTML 39: CSS MORE  EXERCISES   

In HTML, what does the <aside> element define?

 The ASCII character-set; to send information between   Your answer  


computers on the Internet  

A navigation list to be shown at the left side of the page

Content aside from the page content     Correct answer  

Question 40:
Which HTML element is used to specify a header for a document or section?

 <head>     Your answer  

<top>

<section>

<header>     Correct answer  

Study HTML in our HTML Tutorial

W3Schools' Online Certification

https://www.w3schools.com/quiztest/result.asp 13/18
2/2/2021 W3Schools Quiz Results

The perfect solution for professionals who need to balance work, family, and career
  HTML CSS MORE 
building.
EXERCISES   

More than 25 000 certificates already issued!

Get Your Certificate »

The HTML Certificate documents your knowledge of HTML.

The CSS Certificate documents your knowledge of advanced CSS.

The JavaScript Certificate documents your knowledge of JavaScript and HTML DOM.

The Python Certificate documents your knowledge of Python.

The jQuery Certificate documents your knowledge of jQuery.

The SQL Certificate documents your knowledge of SQL.

The PHP Certificate documents your knowledge of PHP and MySQL.

The Java Certificate documents your knowledge of Java.

The XML Certificate documents your knowledge of XML, XML DOM and XSLT.

The Bootstrap Certificate documents your knowledge of the Bootstrap framework.

ADVERTISEMENT

https://www.w3schools.com/quiztest/result.asp 14/18
2/2/2021 W3Schools Quiz Results

  HTML CSS MORE  EXERCISES   

COLOR PICKER

LIKE US



Get your
certification today!

https://www.w3schools.com/quiztest/result.asp 15/18
2/2/2021 W3Schools Quiz Results

  HTML CSS MORE  EXERCISES   

View options

HOW TO

Tabs
Dropdowns
Accordions
Side Navigation
Top Navigation
Modal Boxes
Progress Bars
Parallax
Login Form
HTML Includes
Google Maps
Range Sliders
Tooltips
Slideshow
Filter List
Sort List

Certificates

HTML

CSS

JavaScript

Python

SQL

PHP

And more

https://www.w3schools.com/quiztest/result.asp 16/18
2/2/2021 W3Schools Quiz Results

  HTML CSS MORE  EXERCISES   


ADVERTISEMENT

Lanza tu negocio en línea


Estamos disponibles 24/7 para ayudarte para que tu negocio sea una r

GoDaddy COMPR

REPORT ERROR

FORUM

ABOUT

SHOP

Top Tutorials
HTML Tutorial
CSS Tutorial
JavaScript Tutorial
How To Tutorial
SQL Tutorial
Python Tutorial
W3.CSS Tutorial
Bootstrap Tutorial
PHP Tutorial
Java Tutorial
C++ Tutorial
jQuery Tutorial

Top References
HTML Reference
CSS Reference
JavaScript Reference
SQL Reference
Python Reference
https://www.w3schools.com/quiztest/result.asp 17/18
2/2/2021 W3Schools Quiz Results

W3.CSS Reference
  HTML CSS MOREBootstrap
 Reference EXERCISES   
PHP Reference
HTML Colors
Java Reference
Angular Reference
jQuery Reference

Top Examples
HTML Examples
CSS Examples
JavaScript Examples
How To Examples
SQL Examples
Python Examples
W3.CSS Examples
Bootstrap Examples
PHP Examples
Java Examples
XML Examples
jQuery Examples

Web Certificates
HTML Certificate
CSS Certificate
JavaScript Certificate
SQL Certificate
Python Certificate
PHP Certificate
Bootstrap Certificate
XML Certificate
jQuery Certificate

Get Certified »

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and
learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant
full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use,
cookie and privacy policy.

Copyright 1999-2021 by Refsnes Data. All Rights Reserved.


W3Schools is Powered by W3.CSS.

https://www.w3schools.com/quiztest/result.asp 18/18

You might also like