Help me!

<PLEASE USE THE FOLLOWING TEMPLATE TO HELP YOU CREATE A GREAT POST!>

<Below this line, add a link to the EXACT exercise that you are stuck at.>
how to color d box???
i have no idea!!!
plz reply…
<In what way does your code behave incorrectly? Include ALL error messages.>

```

Replace this line with your code.

<do not remove the three backticks above>

use the css background-color property? MDN - background-color

if this is not what you want, please elaborate your question.

I actually tried it but it did not work :tired_face:

please elaborate you question, with your code so i can have a look

this is not a Codecademy code i was just writing some code in d sublime text

is it ok if i send that code!

does it matter? If you want me to figure out what is wrong, i need to see your code. Please copy paste it to the forum

1 Like

:yum:k one minute please

As @Stetim94 has said - diagnosing your code bugs (without seeing it) is hard.

We’ll all help, if you just show us what’s wrong!

<!DOCTYPE html>
<html>
<head>
<link type="text/css" rel="stylesheet" href="hathway.css"/>
    <title></title>
</head>
<body>
<!--<p>, <h1>, <h2>, <h3>, <h4>, <h5>, <h6>, <ul>, <ol>, <dl>, <pre>, <hr />, <blockquote>, and <address> elements are all block level elements.-->
<pre><img src="http://1.bp.blogspot.com/-zV2n6pv3XcI/Tlryh37BnyI/AAAAAAAAAAY/viGguaSP0pE/s1600/hathway.png" align="right"></pre>
<br><br><br><br>
<span><strong>80 mbps Plan Detials</strong></span>
<br>
<table border="1px" width="100%">
            <thead>
                <tr>
                    <th  rowspan="2" id="speed">Speed</th>                                
                    <th  rowspan="2">FUP Limit</th>
                    <th  rowspan="2">Post FUP<br> Speed</th>                                 
                    <th  rowspan="2">Download Speed</th>                                 
                    <th  rowspan="2">Upload<br> Speed</th> 
                    <th colspan="4"> Subscription Charges</th>                    

                    </tr>                                                          
                    <tr>
                        <th>1 Month</th>
                        <th>3 Month</th>
                        <th>6 Month</th>
                        <th>12 Month</th>
                    </tr>
            </thead>
            <tbody> 
                <tr>
                    <td align="middle">80 Mbps</td>
                    <td align="middle">80 GB</td>
                    <td align="middle">1 Mbps</td>
                    <td align="middle">80 Mbps</td>
                    <td align="middle">80 Mbps</td>
                    <td align="middle">&#8377;1124</td>
                    <td align="middle">&#8377;3099</td>
                    <td align="middle">&#8377;6049</td>
                    <td align="middle">&#8377;11,999</td>
                </tr>       
            </tbody>
        </table>
      <br><br>  
        <span><strong>50 Mbps plan details</strong></span>
        <br>
        <table border="1px" width="100%">
         <thead>
               <tr>
                    <th  rowspan="2">Plan Name</th>                                
                    <th  rowspan="2"> Speed </th>
                    <th  rowspan="2">FUP Limit</th>                                 
                    <th  rowspan="2">Post FUP Speed</th>                                 
                    <th colspan="4">Subscription Charges</th>                    
                 </tr>
                 <tr>
                        <th>3 Month</th>
                        <th>6 Month</th>
                        <th>12 Month</th>
                    </tr>       
         </thead>  
         <tbody> 
                <tr>
                    <td align="middle">HD Stream 1</td>
                    <td align="middle">50 Mbps</td>
                    <td align="middle">30 GB</td>
                    <td align="middle">512 Kbps</td>
                    <td align="middle">&#8377;2699</td>
                    <td align="middle">&#8377;5099</td>
                    <td align="middle">&#8377;9899</td> 
                </tr>
                <tr>
                    <td align="middle">HD Stream 2</td>
                    <td align="middle">50 Mbps</td>
                    <td align="middle">50 GB</td>
                    <td align="middle">1 Mbps</td>
                    <td align="middle">&#8377;3299</td>
                    <td align="middle">&#8377;6299</td>
                    <td align="middle">&#8377;11999</td> 
                </tr> 
                <tr>
                    <td align="middle">HD Stream 3</td>
                    <td align="middle">50 Mbps</td>
                    <td align="middle">75 GB</td>
                    <td align="middle">1 Mbps</td>
                    <td align="middle">&#8377;4199</td>
                    <td align="middle">&#8377;7999</td>
                    <td align="middle">&#8377;15399</td> 
                </tr>               
            </tbody>
        </table>
        <br><br>
        <span><strong>Top Up Plan</strong></span>
        <br>
        <table border="1px" width="50%">
            <thead>
                <tr>
                    <th>5 GB: &#8377;299</th>                                
                    <th>10 GB:&#8377;499</th>
                    <th>100 GB:&#8377;2499</th> 
                </tr>
        </table>
        <ul>
            <li>CPE Charges applicable</li>
            <li>Documents Required-<br>a)Photo ID proof<br>b)Address proof<br>c)Passport size photo</li>
            <li>&#8377;1000 to be payable as installation charges</li>
            <li>Service Tax applicable</li>
            <li>&#8377;999(+taxes)to be payable as refundable security deposit for Wi-Fi router</li>
        </ul>
</div>
</body>
</html>                                                            

here is CSS code:

div {
    background-color: #000066 ;
    width: 300px;
    padding: 25px;
    border: 25px solid navy;
    margin: 25px;
}
#speed{
    background-color: #000066 ;
}

Please edit your code properly to make it easier for us all to read. Thanks.

can u tell me how can i send d pic

Just look at what the CodeCademy forums tell you to do.

Highlight all code, after pasting it, and click the “</>” button. It will turn it into properly formatted code.

i put your code in a bin and it seems to work fine, are your css file is called hathway.css and is in the same directory as your html file? And that you didn’t accidentally stored them as text files?

Or just refresh the page, i did the markup of your reply with the code in it

ok thanks i will try it bye

:+1: yes it really worked!