HTML
CSS
SYNTAX
VOCABULARY
BONUS QUESTIONS
100

HTML Stands for?

HyperText Markup Language

100

If scripting is not enabled in the browser or the script type on the HTML page is not supported the ______ can be used.

Noscript

100

This is an example of which type of link?

<img src="https://www.w3schools.com/images/picture.jpg" alt="Mountain">



What is an absolute link?

100

________ provide additional information about the element

Attributes

100

Used to identify the window size that the content will be displayed in

Viewport

200

A _____ is used to render HTML .

Web Browser

200

To Specify the style information for an HTML document or part of it.


Style Tag

200

What is the proper syntax for a hyperlink?

<a href="Example link">Example</a> 

200

A set of  ________enclosed inside angle brackets that are used to hold HTML elements

Tags

200

It is displayed as part of the search results in a search engine

It gives an idea about the purpose of this document

Discription

300

Controls the overall settings of the page

Meta Information

300

_______Identifies the external resources. It is used to link to the stylesheets, favicon, fonts, … etc. Defined in the head element

LINK


<link href="main.css" rel="stylesheet">  

<link rel="icon" href="favicon.ico"> 

300

Fix the solution 


<p> This is the first paragraph </h1> 

<h1> This is heading 1 </p>  

<p> This is the first paragraph </p> 

<h1> This is heading 1 </h1>  

300

Contains start tag, the attributes, the content, and the end tag

Element 

300

Identifies whether the page can be translated or not by the search engine

Translation

400

It is HTML document type declaration that identifies the version of the page

DOCTYPE

400

What are ALL parts of the meta information?

<meta charset="UTF-8"> 

   <meta name="description" content="HTML Course"> 

  <meta name="keywords" content="HTML, CSS, JavaScript"> 

 <meta name="author" content="Donald Duck"> 

    <meta name="viewport" content="width=device-width, initial-scale=1.0">



400


  1. <p> This is a head <p>

  2. <h1> This is heading 1 </h1> 

  3.  <p> This is a paragraph </p> 

400

Either the opening or the closing and used to mark the start or the end of an HTML element

Tag

400

Font-sizes examples are considered?

Values

500

What is the Declaration for HTML 5

<!DOCTYPE html5>

500

Used to identify the keywords in an HTML document

Keywords

500

Where is the Meta information located?

The head tag <head>

500

DOM stands for?

Document Object Model

500

Properties= Colors & ?

Background-color

M
e
n
u