Jump to content

css linking problem


witchy478

Recommended Posts

It looks fine to me.

 

This is what's on the page source

 

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">

<html>

<head> 

    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />  

    <title>Voluptous Decedants</title> 

       <link rel="stylesheet" type="text/css" href="stylesheet.css" /> 

</head>

<body>

<h1>home</h1>

</body>



</html>

Link to comment
Share on other sites

No it doesn't but here is my stylesheet.css

 

Then you're not linking to your stylesheet, which is the core of the problem you're facing here.  At the most basic level, you must define the path to your stylesheet relatively from the page loading it.  If your web page is in folder /public_html/awesome_app/ where your web assets are in folder public_html/awesome_app/assets, index.php calling the stylesheet would need to link to it appropriately with

 

<link rel="stylesheet" type="text/css" href="./assets/stylesheet.css" />

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.