What is HTML used for?
To create the basic structure and design of a webpage
How do you make a heading in HTML?
<h1>Heading</h1>
What is an example of a CSS class/id?
any ex.
#text1 {}
#thing {}
#square {}
...
What is CSS used for?
To style and customize a webpage (makes it look beautiful <3)
How do you make a paragraph in HTML?
<p>Paragraph</p>
How do you create a sticky header?
a) position: absolute;
b) header: sticky;
c) sticky: position;
d) position: sticky;
(d) hahaha
What is a div?
A large container that can store elements
How do you add an image in HTML?
<img src="image url">
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)
What is a span?
A small container that only holds one element
How do you create a link with HTML?
<a href="link url"> click here </a>
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>
What does HTML?
a) Hyper Tech Markup Language
b) High Tech Markup Language
c) Hyper Text Markup Language
d) Hyper Text Market Language
c)
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
How do you write a fade keyframe for CSS that fades in?
@keyframe fade {?}
@keyframe fade {
0% {opacity:0}
100% {opacity: 1}
}