Basic CSS/HTML StyleSheet Linking Trouble Shooting HElp?

Wesley Kelemen

New member
Basic CSS/HTML StyleSheet Linking Trouble Shooting Please Help?

<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//WSC//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-…


<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<title>CSS Example</title>

<link rel="stylesheet" type="text/css" href="stylesheetcss.css" />
</head>
<body>
<h1> Basic CSS Font Properties</h1>
<p>The following table shows you the basic CSS font properties that allow
you to change the appearance of text in your documents.</p>

<table>
<tr>
<th>Property</th>
<th>Purpose</th>
</tr>
<tr>
<td class="code">font-family</td>
<td>Specifies the font used</td>
</tr>
<tr>
<td class="code">font-size</td>
<td>Specifies the size of the font used</td>
</tr>
<tr>
<td class="code">font-style</td>
<td>Specifies whether the font should be normal, italic or oblique</td>
</tr>
<tr>
<td class="code">font-weight</td>
<td>Specifies whether the font should be normal, bold, bolder, or lighter</td>
</tr>
</table>
</body>
</html>

And for my Style Sheet I have this but its not working and its in the same directory




body {

color:ffefd5;
background-color:3cb371;
font-family:arial, verdana, sans-serif; }

h1 {font-size:30pt;}



______________________________________…


For some reason on the .html page the second row for my tables is not showing up and whateve I do cant fix it plus my CSS is not linking up and ive tried many things to no avail could someone please point me in the right direction
 
It should work fine. It does when I copy and paste it into my editor. Are you sure that you have saved the CSS? I copied what you provided into a style tag within the head tag and it is fine. Well, you are missing the # sign in prefixing the hex color values. Should be #ffefd5; and #3cb371; If it is that the colors are not displaying that is the reason.
 
dont see any reason for not showing second row, everything is fine with your HTML except your CSS . Cod eyou are usign to link CSS should be
<link rel="stylesheet" type="text/css" href="stylesheetcss.css" />
 
Back
Top