noob simple html Q

Out of context: Reply #8

  • Started
  • Last post
  • 15 Responses
  • vaxorcist0

    RE: Not knowing where to put the code...
    You could mean:

    1. where on the server?
    (usually www or htdocs or public_html folder)

    2. where in the text of the HTML file?
    if you're using CSS, all style code like orrinward quotes above either has to be wrapped in <style> ... code here </style> or included in a separate file like
    <link rel="stylesheet" type="text/css" href="style.css" >
    where style.css is the code that orrinward gave you,
    then your HTML code references it like:

    <div id="container">
    <img src="under-construction.gif">
    </div>

View thread