General Questions
HTML
CSS
100

What is HTML used for?

To create the basic structure and design of a webpage

100

How do you make a heading in HTML?

<h1>Heading</h1>

100

What is an example of a CSS class/id?

any ex. 

#text1 {}

#thing {}

#square {}

...

200

What is CSS used for?

To style and customize a webpage (makes it look beautiful <3)

200

How do you make a paragraph in HTML?

<p>Paragraph</p>

200

How do you create a sticky header?

a) position: absolute;

b) header: sticky;

c) sticky: position;

d) position: sticky;

(d) hahaha

300

What is a div?

A large container that can store elements

300

How do you add an image in HTML?

<img src="image url">

300

How do you change the color of a paragraph in CSS?

a) <p color= red> Paragraph </p>

b) <p style="color: red;"> Paragraph </p>

c) <p style="color: red" Paragraph </p>

b)

400

What is a span?

A small container that only holds one element

400

How do you create a link with HTML?

<a href="link url"> click here </a>

400

How do you apply this CSS class to an HTML heading?

#text1 {

border-width: 10px;

border-style: solid;

color: orchid;

border-color: chartreuse;

}

<h1 id="text1"> Heading </h>

500

What does HTML?

a) Hyper Tech Markup Language

b) High Tech Markup Language

c) Hyper Text Markup Language 

d) Hyper Text Market Language


c)

500

In a HTML table, what does <tr> make?

What does <td> make?


<tr> makes the rows of a table

<td> makes the columns of a table

500

How do you write a fade keyframe for CSS that fades in?

@keyframe fade {?}

@keyframe fade {

0% {opacity:0}

100% {opacity: 1}

}

M
e
n
u