in reply to Re^3: CGI and CSS
in thread CGI and CSS

I tried that as well. The thing is that this cgi file is in the cgi-bin directory. The cgi-bin directory is in the public_html directory. The style.css file and the tb_pic1.png image are also in the public_html directory.

Replies are listed 'Best First'.
Re^5: CGI and CSS
by marto (Cardinal) on Mar 04, 2014 at 13:16 UTC

    You could stop trying things seemingly at random and debug the various issues your code has. Re: CGI and CSS.

      ok thank you

Re^5: CGI and CSS
by tangent (Parson) on Mar 04, 2014 at 13:40 UTC
    cgi file is in the cgi-bin directory...cgi-bin directory is in the public_html directory ... style.css file and the tb_pic1.png image are also in the public_html directory.
    If that is the case then the paths could be written as:
    <link type="text/css" rel="stylesheet" href="../style.css"> <img class="my_images" src="../tb_pic1.png">