Home
Flashcards
Preview
html
Home
Get App
Take Quiz
Create
Opening line of codein html.
<!DOCTYPE html>
Second line of code specifying the type of document.
<html>
</html>
Tag to make text bold.
<strong>
</strong>
Tag to format the tab at the top of the browser.
<head>
</head>
Tag for putting words in the tab at the top of the browser.
<title>
</title>
Tag for formatting the bulk of the page.
<body>
</body>
Tag for creating a paragraph.
<p>
</p>
The biggest header tag.
<h1>
</h1>
All header tags.
<h1></h1>
<h2></h2>
<h3></h3>
<h4></h4>
<h5></h5>
<h6></h6>
To add an image.
<img src="url"/>
Add a link.
<a href="address"> clickable content </a>
Create an ordered list.
<ol>
<li></li>
<li></li>
</ol>
Unordered list
<ul>
<li></li>
<li></li>
</ul>
Make a comment.
<!--comment-->
What do you insert into the tag to control the size of the font?
style="font-size:12px"
What to you insert into the tag to control the font color?
style="color:red"
What do you insert into the tag to control the font style?
style="font-family:Impact"
(Capitalize the name of the font.)
Inserting multiple style elements in a tag.
style="font-size:12px;font-family:serif;color:blue"
What do you insert into the tag to control the background color?
style="background-color:blue"
What do you insert in the tag to align the text?
style="text-align:center"
Tag used to italicize words.
<em></em>
What are the three tags used to make a table?
<table>
<tr>
<td></td>
<td></td>
</tr>
</table>
Author
csararun
ID
206013
Card Set
html
Description
html tags and what they are used for.
Updated
2013-03-09T20:02:47Z
Show Answers
Home
Flashcards
Preview