Hi
I have been recently testing out CSS in my webpage and i have done it as an external style sheet.
When I attach it it makes the title of the page be shown as text on the web page and the title then becomes the file path of the document on the web
I am wondering if you can help me
Cheers In Advance
Ginger DudeWe'll need to see that area of code to really be of assistance, but it sounds like you've eliminated the closing title tag (</title>) or somehow not structured the link correctly.Yeh make sure youve closed the tags and got them in the right spots. Something along these lines...
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link href=http://www.webdeveloper.com/forum/archive/index.php/"stylesheet.css" rel="stylesheet" type="text/css" />
</head>
<body>
<p>nothing</p>
</body>
</html>
I have been recently testing out CSS in my webpage and i have done it as an external style sheet.
When I attach it it makes the title of the page be shown as text on the web page and the title then becomes the file path of the document on the web
I am wondering if you can help me
Cheers In Advance
Ginger DudeWe'll need to see that area of code to really be of assistance, but it sounds like you've eliminated the closing title tag (</title>) or somehow not structured the link correctly.Yeh make sure youve closed the tags and got them in the right spots. Something along these lines...
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link href=http://www.webdeveloper.com/forum/archive/index.php/"stylesheet.css" rel="stylesheet" type="text/css" />
</head>
<body>
<p>nothing</p>
</body>
</html>