Is This Code Correct
What Does This Tag Do
True or False
Organize It
Do You Know
100

<img src="image.jpg"> Image </img>

Correct Code
<img src="image.jpg">

100

<a>

The HTML <a> tag defines a hyperlink. It has the following syntax:
<a href="url">link text</a>

100

All HTML tags come in pairs

False

There are some empty tags like <br> and <img>

100

From bigger to smaller text size

h5, h3, h1, h6, h2, h4

h1, h2, h3, h4, h5 and h6

100

How to recognize an HTML 5 site?

The code starts with <!DOCTYPEhtml>

200

h1 {

color;red:

background color;pink:


Correct code:

h1 {

color:red;

background-color:pink;

}

200

<div>

The <div> tag defines a division or a section in an HTML document.
The <div> tag is used as a container for HTML elements - which is then styled with CSS.

200

You can style HTML, using CSS, in 3 different places

True, inline, internal and external style

200

From smaller to bigger

Margin, Padding, Content, Border

Content, Padding, Border, Margin

200

How to call an id and a class from CSS style file?

id starts with #, class starts with . (period)

300

.container {

display: grid;

grid-template-columns: auto, auto, auto;

padding: 20px;

background-color: blue;

}

It's correct

300

In HTML

<!---->

HTML Comment Tag

300

There are 3 types of gradients

True
- Linear Gradients (goes down/up/left/right/diagonally)

- Radial Gradients (defined by their center)

- Conic Gradients (rotated around a center point)

300

From bottom to top

<html>, <!DOCTYPEhtml>, <head>, <body>, </html>, </title>, <h1>, </body>, </h1>, <title>, </head>

</html>, </body>, </h1>, <h1>, <body>, </head>, </title>, <title>, <head>, <html>, <!DOCTYPEhtml>


300

What is the difference between relative and absolute URL's

Absolute URL: A full web address

https://assets.puzzlefactory.com/puzzle/254/191/original.jpg


Relative URL:  A link to a page within the same website

pikachu.jpg

400

<div class=grid2>

<ul>

     <li><a href="index.html">Home</a><li>

     <ul><a href="about.html">About Us</a><li>

     <li><a href="gallery.html">gallery</a><li>

     <ul><a href="contact.html">Contact us</a><li>

</ol>

</div>

Correct Code:

<div class="grid2">

<ul>

    <li><a href="index.html">Home</a></li>

    <li><a href="about.html">About Us</a></li>

    <li><a href="gallery.html">gallery</a></li>

    <li><a href="contact.html">Contact us</a></li>

</ul>

</div>

 

400

in CSS

/* */

CSS Comment

400

HEX color codes have 5 digits

False, they have 6 digits not including #

400

Organize from last to first:

Active, Link, Hover, Visited

Active, Hover, Visited, Link

400

The 5 families of fonts we can use

Serif, Sans-Serif, Cursive/Script, Fantasy, Monotype

500

<link rel="google-font" href="https://fonts.google.com/css?family=Sofia"></link>

Correct Code:
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Sofia">

500

grid-template-column: ;

The grid-template-columns property specifies the number (and the widths) of columns in a grid layout.

500

"em" and "rem" are measurement units in CSS

True


500

From smallest child to father

<table>, <tr>, <p>, <th>, <td>

<p>, <td>, <th>, <tr>, <table>

500

All the types of color codes we can use in HTML/CSS

Color name, RGB, HSL(A), HEX

M
e
n
u