HTML uses <> in its code. True or False.
True
Which tag is used for paragraphs?
<p>
<a> tag
What tag is used to code images?
<img>
<Doctype HTML>
<!DOCTYPE html>
an HTML page starts with which line of code?
<!DOCTYPE html>
What does <br> do?
Creates a line break
<a href="link"> ? </a>
What goes in the ?
The text that must be clicked to get to the website
A closing tag is needed when coding an image onto HTML. True or False.
False.
<html> <html/>
<html> </html>
Which tags is used to create a heading?
h1 - h6
What are the two tags used to bold text?
<b> and <strong>
<a href = "link"> Click here!
What is missing?
<img ____ = "">
What goes in the missing blank?
src
<body>
<title></title>
</body>
title goes in <head>
What tag goes into the <head></head>?
title
What tag should I use to make my text look like :
Hello
<em>
what does href stand for?
width=“100px” height=“100px”
<p>
Hello <br>
My Name is Ahmad <br>
Bye!
<p>
Hello <br>
My Name is Ahmad <br>
Bye!
</p>
Where does the title of page appear?
On the tab and not on the actual website page
What is the difference between <h5> and <h6>?
h6 is bigger than h5
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>
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>
<a src="website link">
<img href="google image link">
<a>
<a href="website link">
<img src="google image link">
</a>