Question:

Why cant i align my image in the middle? help?!?

by  |  earlier

0 LIKES UnLike

im a complete beginner, please help me.

heres my code:

<html>

<head>

<style type="text/css">

.style2 {

font-size: large;

color: #0033CC;

}

.style3 {

text-decoration: none;

}

.style4 {

text-decoration: underline;

}

</style>

</head>

<title>my webpage</title>

</head>

<body>

<h1 align="center"><font face= 'Courier Final Draft'>AMRO Security Solutions<h/1></font>

<br>

</h1><a href="http://file015a.bebo.com/1/large/2... /a="" class="style3">

<p align="center" class="style2"><strong>Under construction, coming soon.</strong></p>

<img src="amro%20logo2.jpg" align= "middle">

<a href="http://file015a.bebo.com/1/large/2... /a="">

<br clear="all">

</a>

<p align="center" class="style4">All rights reserved AMRO©2008</p>

</a>

</body>

</html>

thanks

 Tags:

   Report

1 ANSWERS


  1. Try This

    &lt;html&gt;

    &lt;head&gt;

    &lt;style type=&quot;text/css&quot;&gt;

    .style2 {

    font-size: large;

    color: #0033CC;

    }

    .style3 {

    text-decoration: none;

    }

    .style4 {

    text-decoration: underline;

    }

    &lt;/style&gt;

    &lt;/head&gt;

    &lt;title&gt;my webpage&lt;/title&gt;

    &lt;/head&gt;

    &lt;body&gt;

    &lt;h1 align=&quot;center&quot;&gt;&lt;font face= &#039;Courier Final Draft&#039;&gt;AMRO Security Solutions&lt;h/1&gt;&lt;/font&gt;

    &lt;br&gt;

    &lt;/h1&gt;&lt;a href=&quot;http://file015a.bebo.com/1/large/2... /a=&quot;&quot; class=&quot;style3&quot;&gt;

    &lt;p align=&quot;center&quot; class=&quot;style2&quot;&gt;&lt;strong&gt;Under construction, coming soon.&lt;/strong&gt;

    &lt;br&gt;

    &lt;img src=&quot;amro%20logo2.jpg&quot;&gt;

    &lt;/p&gt;

    &lt;a href=&quot;http://file015a.bebo.com/1/large/2... /a=&quot;&quot;&gt;

    &lt;br clear=&quot;all&quot;&gt;

    &lt;/a&gt;

    &lt;p align=&quot;center&quot; class=&quot;style4&quot;&gt;All rights reserved AMRO©2008&lt;/p&gt;

    &lt;/body&gt;

    &lt;/html&gt;

    The reason is because you need to put your img tag inside of your closing &lt;/p&gt;

    I also added a break to make the picture drop to the next line &lt;/br&gt;

    You also had an extra &lt;/a&gt; closing tag at the end right before your &lt;/body&gt; (closing body tag)...I removed that as well

Question Stats

Latest activity: earlier.
This question has 1 answers.

BECOME A GUIDE

Share your knowledge and help people by answering questions.