1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Want CSS code for this created page

Discussion in 'CSS' started by Ch Sajid Ali, Feb 14, 2012.

  1. #1
    hello seniors,
    i am a student and i made my page at facebook, i want to design welcome page, please anyone give me code from this page's welcome page facebook.com/achidost5........i wish to design like this, please anyone help me, i haven't anyaccount to pay...............
    Thanks in advance.
     
    Ch Sajid Ali, Feb 14, 2012 IP
  2. awais_aslam

    awais_aslam Peon

    Messages:
    19
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    • <div id="sidebar">
    • <div id="subscribe">
    • <h3>Subscribe!</h3>
    • <ul>
    • <li><a href="#">Subscribe via RSS</a></li>
    • <li><a href="#">Get Email Updates</a></li>
    • <li><a href="#">Follow us on Twitter</a></li>
    • </ul>
    • </div>
    • <div id="popular">
    • <h3>Popular Items</h3>
    • <ul>
    • <li><a href="#">Lorem ipsum dolor site amet</a></li>
    • <li><a href="#">Ulvinar tincidunt, Mauris id</a></li>
    • <li><a href="#">Lorem ipsum dolor site amet</a></li>
    • <li><a href="#">Proin tempor erat sit tene</a></li>
    • </ul>
    • </div>
    • <div id="contributors">
    • <h3>Contributors</h3>
    • <ul>
    • <li><a href="#">John Smith, freelance writer</a></li>
    • <li><a href="#">Jack McCoy, designer</a></li>
    • <li><a href="#">Lenny Briscoe, editor</a></li>
    • <li><a href="#">John Smith, martketing</a></li>
    • </ul>
    • <a href="#">Join Our Team</a>
    • </div>
    • </div><!--end sidebar-->
     
    awais_aslam, Feb 17, 2012 IP
  3. sarika

    sarika Peon

    Messages:
    77
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #3
    this is not a css code, this is html code

     
    sarika, Feb 17, 2012 IP
  4. apnamirpur

    apnamirpur Greenhorn

    Messages:
    20
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    11
    #4
    if you are using div with id you can create a css file as #id_name in css file and create your default css such as float:right or float:left etc
     
    apnamirpur, Feb 17, 2012 IP
  5. minisouls

    minisouls Member

    Messages:
    83
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    36
    #5
    Setting up the files
    1 Start out by creating a new folder on your computer to put all of the site files in; I titled my folder sixrevisionsband. Create another folder in your working folder you just created and call it images; it will contain all the images, including CSS background images, for the site.


    Now open up your favorite code editor (I use Coda.) Create a new HTML file titled index.html in the root of the folder -this will be our main page template. I like to keep all of my stylesheets in one folder in case I need to add a few different stylesheets. That way they are all kept together neatly. So we’ll add a folder titled css, and a CSS file inside it titled screen.css. screen.css will be the main stylesheet for our template.

    I start out the HTML with some basic stuff, making sure to add a title and a link to the stylesheet:

    <!DOCTYPE html>
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <link rel="stylesheet" href="css/screen.css" type="text/css" media="screen" />
    <title>Six Revisions Band Website</title>
    </head>
    <body>

    </body>
    </html>
     
    minisouls, Feb 17, 2012 IP