View Single Post
Old 05-04-2013, 10:41 PM   #4
Malachi
Negus
 
Malachi's Avatar
 
Join Date: Jan 2013
Posts: 2,529
Battle Record: 5-10


Champed
- Newbie Tourney VI

Rep Power: 82877410
Malachi has a brilliant futureMalachi has a brilliant futureMalachi has a brilliant futureMalachi has a brilliant futureMalachi has a brilliant futureMalachi has a brilliant futureMalachi has a brilliant futureMalachi has a brilliant futureMalachi has a brilliant futureMalachi has a brilliant futureMalachi has a brilliant future
Send a message via AIM to Malachi
Default

@Knucklehead Im doing some work on this site called codeacademy.com and its about font chaning and size changes basically idk what to do at this point:

Font family
We've covered font colors and font sizes. But we want more power! We want to decide what font type to use. In HTML, this is called the font-family.

To change font type, simply add the style attribute in the opening tag, then make the style equal to "font-family:Helvetica" (or whatever font you like). For example:

<h2 style="font-family:Garamond">
See here for a list of all available fonts.

INSTRUCTIONS
Change the font size of the first listed item to 16px and the font to Garamond.
Change the font size of the second listed item to 12px and the font to Verdana.
Change the font size of the third listed item to 10px and the font to Impact.
Make sure to capitalize Garamond, Verdana, and Impact as shown!

<!DOCTYPE html>
<html>
<head>
<title>Loving the font changes</title>
</head>
<body>
<h1>Big title</h1>
<ol>
<li>This item is big Garamond.</li>
<li>This item is medium Verdana.</li>
<li>This item is small Impact.</li>
</ol>
</body>
</html>
__________________
Seen the spectrum through the prisms
Malachi is offline   Reply With Quote