HTML Basic
Tag it!
Attributes
Formatting
Tag it 2!
100

HTML

What is hypertext markup language

100

<b>

What is the correct HTML code to make text bold.

100

href

src

style

width = height =

alt



What are html attributes

100

 Defines the font to be used for an HTML element:

What is the The font-family property?

100

<i>

What the italicize tag?

200

<!DOCTYPE html>

<html>

<head>

<title>Page Title</title>

</head>

<body>

</body>

</html>


What are the basic html tags for a web page

200

<ul>

What bulleted list tag?

200

src

What is a image attribute?

200

<h1 style="color:blue;"></h1>
<p style="color:red;">.</p>

What is how to change the text color of a paragaph and and heading?

200

<p>

What is the paragraph tag?

300

Notepad, Notepad Plus, W3schools

What are html editors

300

<h1></h1>

What are heading open and close tags

300

href

what is a link attribute?

300

Defines the text size for an HTML element:

What is the font-size property ?

300

<ol>

What is numbered list tag?

400
<body>

Contains the visible portion of a web page.

400

What is a link tag?

400

style

What is a style attribute

400

 Defines the horizontal text alignment for an HTML element:


What is the text-align property?

400

body {
   background-image: url("paper.gif");
  } 

What is the tag to add a background image?

500

inline, internal, external

What are the 3 ways to add style to a webpage?

500



<style>

p {

    border: 10px solid green;

    padding: 70px;

}

</style>



What is the style tag to add a border and a padding?

500

alt

What is the alternative atrribute?

500

CSS

What is a cascading style sheet?

500



<style>

body {background-color: yellow;}

h1   {color: Purple;}

p    {color: red;}

p {

    border: 10px solid green;

    padding: 70px;

}

</style>



What is the style tag to add a background color, text color, padding and a border?