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
https://forums.phpfreaks.com/topic/264610-css-linking-problem/#findComment-1357460
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
https://forums.phpfreaks.com/topic/264610-css-linking-problem/#findComment-1358533
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.