HTML
What is hypertext markup language
<b>
What is the correct HTML code to make text bold.
href
src
style
width = height =
alt
What are html attributes
Defines the font to be used for an HTML element:
What is the The font-family property?
<i>
What the italicize tag?
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
</body>
</html>
What are the basic html tags for a web page
<ul>
What bulleted list tag?
src
What is a image attribute?
<h1 style="color:blue;"></h1>
<p style="color:red;">.</p>
What is how to change the text color of a paragaph and and heading?
What is the paragraph tag?
Notepad, Notepad Plus, W3schools
What are html editors
<h1></h1>
What are heading open and close tags
Defines the text size for an HTML element:
What is the font-size property ?
<ol>
What is numbered list tag?
What is a link tag?
style
What is a style attribute
Defines the horizontal text alignment for an HTML element:
What is the text-align property?
body {
background-image: url("paper.gif");
}
What is the tag to add a background image?
inline, internal, external
What are the 3 ways to add style to a webpage?
<style>
p {
border: 10px solid green;
padding: 70px;
}
</style>
What is the style tag to add a border and a padding?
alt
What is the alternative atrribute?
CSS
What is a cascading style sheet?
<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?