Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.

html help?

okay im making an web page with html and i no, i dont know how to do css so if it can be avoided please do so if not at least explain how to do the code and where to put it.

basically, i have 2 questions:

i want to have a very simple site that has like a main body area, a banner and a little side bar , but i need help with the code. how do i know how big to make the table so it will take up most of the screen? what size is that? how do i put my banner on a page?

also.... how do i vertically align an image?i know how to do it horizontal, its just <center> </center>

but how do i put it where its at the exact vertical middle? i wanna make a table, but it in the center and vertical center of the page, and have a banner up at the top for about 975 pixels. can someone please help me with the code and please dont refer me to "online sites" that teach me how,i dont want to learn it all theway i know some of it i just need help witht his code.

i just need the code to put a table in tthe center vertically/horizontally, and then have a banner up top, thank you soooo much and ill answer your questions if i can :)

love,

-erica

1 Answer

Relevance
  • Anonymous
    7 years ago

    Hi, erica there is no good way to do this without css. I really recomend you start to learn css or your websites will not be to good looking, and css is really easy to learn

    To align something in the middle you need to set the marign. I am guessing you want to align your while website to the middle of the webpage. Before you start in you HTML you will want to make a div around all of your content and give it the id of "wrapper" here is the css that you will need

    -------------------------------------------------------------------------------

    #wrapper {

    margin: 0px auto;

    width:900px;

    }

    --------------------------------------------------------------------------------

    once you apply that everything will be in aligned in the center.

    You can use that css for anything you want like your table

    I hope this was helpful

    Check out my website novuta.com it may come in handy for web developers

    -Kevin

Still have questions? Get your answers by asking now.