HTML code right

Discussion in 'HTML & Website Design' started by HyperSpider, Nov 5, 2011.

  1. #1
    Can you help me how Can I do this

    [​IMG]
     
    Solved! View solution.
    HyperSpider, Nov 5, 2011 IP
  2. #2
    Here is a simple header with logo aligned to left and Facebook button aligned to right.

    CSS:
    #logo {float: left }
    #fb-button {float: right}
    Code (markup):
    HTML:
    <div id="header">
    	<div id="logo">...code for logo...</div>
    	<div id="fb-button">...code for Facebook button...</div>
    </div>
    HTML:
     
    ademmeda, Nov 5, 2011 IP
  3. karthimx

    karthimx Prominent Member

    Messages:
    4,959
    Likes Received:
    127
    Best Answers:
    2
    Trophy Points:
    340
    #3
    using styles

    float: right;

    or

    text-align: right;
     
    karthimx, Nov 5, 2011 IP