What are the three main tags of html?
<html>
<head>
<body>
<!DOCTYPEhtml>
the title is also the _____ of a web page
hint: web mailing
browser title
Where does the <p> tag go
the body
I want to make the word happy in this sentence boldened how do i do that?
use a <b> </b> tag around it
This tag helps write paragraphs
<p>
What does HTML stand for?
Hyper Text Mark up Language
where does the title go?
Head
I want to make a list of the students based on class ranking what do I do?
use an ordered list
Creates ordered lists
<ol>
What does CSS stand for
Cascading Style Sheets
What is the first tag
<DOCTYPE!>
I want to make a link to wikipedia but have it say answers
use <a> tag with an href attribute
Used for images
<img>
how do you know is a website is secure
The locked lock next to the URL
what tag shows the language used to code the webpage
<html>
How would I color the background blue for the whole page?
Use the "style" attribute and "color:blue" property in the opening <body> tag
creates a link
<a>
What is the website we use for coding in this class?
CodeHS
two types of lists
ordered and unordered
What would I use to make an image a link?
<a><img></img></a>
put an <img> tag inside a <a> tag