HTML Basics
Formatting text
Links
Images
Correct Code
100

HTML uses <> in its code. True or False.

True

100

Which tag is used for paragraphs?

<p>

100
What tag is used to create a link on a website? 

<a> tag

100

What tag is used to code images?

<img>

100

<Doctype HTML>

<!DOCTYPE html>

200

an HTML page starts with which line of code?

<!DOCTYPE html>

200

What does <br> do?

Creates a line break

200

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

What goes in the ?

The text that must be clicked to get to the website

200

A closing tag is needed when coding an image onto HTML. True or False.

False.

200

<html> <html/>

<html> </html>

300

Which tags is used to create a heading?

h1 - h6

300

What are the two tags used to bold text?

<b> and <strong>

300

<a href = "link"> Click here!

What is missing?

closing tag: </a>
300

<img ____ = "">

What goes in the missing blank?

src

300

<body>

<title></title>

</body>

title goes in <head>

400

What tag goes into the <head></head>?

title

400

What tag should I use to make my text look like :

Hello

<em>

400

what does href stand for?

hyperlink reference
400
How do I resize an image?

width=“100px” height=“100px”

400

<p>

Hello <br>

My Name is Ahmad <br>

Bye!

<p>

Hello <br>

My Name is Ahmad <br>

Bye!

</p>

500

Where does the title of page appear?

On the tab and not on the actual website page

500

What is the difference between <h5> and <h6>?

h6 is bigger than h5

500

If i want to add https://www.google.com to my website, what code do I put?

<a href="https://www.google.com"> Google </a>

500

Add an image as a hyperlink (meaning that clicking on an image should take you to a website)

<a href="website link">

           <img src="google image link">

 </a>

500

<a src="website link">

           <img href="google image link">

 <a>

<a href="website link">

           <img src="google image link">

 </a>