Italicizing in html.?

Levi

New member
Im doing a homework assignment in my html class and i have to design a page according to the book however im having trouble because i had to italicize the title which was fin but for some reason it keeps italicizing the whole page and i cant figure out why.
below is a copy of the page

<HTML>
<HEAD>


<TITLE>Lab 3-1</TITLE>


<BODY BACKGROUND="Greyback.jpg" BGCOLOR="GREEN">

<H1><CENTER><i><font color="Red">WALK FOR THE CURE.</font> <i></CENTER></H1<br>
<H1><CENTER><i><font color="Red">STUDENTS NEEDED </font><i></CENTER></H1>
<p>


<hr size=10>
<p>

<img src="curewalk.gif" ALIGN="LEFT" HSPACE="10" width="190" height="178" />

<SMALL> <SMALL> Mccain High School is seeking students to participate in the walk for the cure event this saturday.
All student walkers get community service credit for participating. The walk begins at 9:00 am and
lasts until the final walker makes it across the finish line. We will have box lunch available to all walkers
and water provided for free throughout the course
<p>

Bring a friend and family to this important event. All procedes will be donated to the walk for the cure Committee
at saturday nights Dance. Please Join us for some fun and walk for a cure </SMALL> </SMALL>












</BODY>
</HTML>
 
The answer to your problem is that you haven't closed the <i> tag accordingly, with a </i> Do it like this:

<i> (Whatever I want to italicize </i>

Here's exactly what I would have written:

<H1><CENTER><i><font color="Red">WALK FOR THE CURE.</i></font> <i></CENTER></H1></i><br>
<H1><CENTER><i><font color="Red">STUDENTS NEEDED </i></font></CENTER></H1>
<p>
 
The answer to your problem is that you haven't closed the <i> tag accordingly, with a </i> Do it like this:

<i> (Whatever I want to italicize </i>

Here's exactly what I would have written:

<H1><CENTER><i><font color="Red">WALK FOR THE CURE.</i></font> <i></CENTER></H1></i><br>
<H1><CENTER><i><font color="Red">STUDENTS NEEDED </i></font></CENTER></H1>
<p>
 
The answer to your problem is that you haven't closed the <i> tag accordingly, with a </i> Do it like this:

<i> (Whatever I want to italicize </i>

Here's exactly what I would have written:

<H1><CENTER><i><font color="Red">WALK FOR THE CURE.</i></font> <i></CENTER></H1></i><br>
<H1><CENTER><i><font color="Red">STUDENTS NEEDED </i></font></CENTER></H1>
<p>
 
Back
Top