Click here to Skip to main content
15,881,027 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi Friends,
How to apply open sans font with size 24px and color code #666666 for a h1 tag inside td. I need to apply for highligted Leave management system



<tr>
            <td style="background-color:#F3F3F3;">
                <table  width="100%" style="background-repeat:no-repeat;height:100px" cellpadding="0px">                   
                    <tr>
                    
                        <td  style="removed: relative; removed 0px; removed 188px;" width="85%" height="100px" >
                        <h1 style="removed: relative; removed 0px; removed 10px;">Leave Management System</h1>
                        </td>
                        <td style="removed: relative; removed 0px; removed 0px;" width="15%" height="100px"><img alt="" src="Images/LMSNewBannerLogo.PNG"
                          /></td>
                         <%--<img alt="" src="Images/LMSNewBanner.jpg"   
                        style="position: relative; top: 0px; left: 0px;" width="100%" height="147px" />--%>
                        
                                          
                    </tr>
                   
                </table>
            </td>
        </tr> 
Posted
Updated 18-Apr-14 6:11am
Comments
enhzflep 22-Jan-14 1:09am    
CSS
-----
td h1
{
font-size: 24px;
font-family: sans;
color: #666666;
}
[no name] 17-Apr-14 6:26am    
Above style will be help you.

1 solution

td h1
{
font-size: 24px;
font-family: 'Open Sans', sans-serif;
color: #666666;
}
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900