beanums
12-23-2004, 07:51 AM
I have this code in my page...
<html>
<head>
<title> Page Title</title>
</head>
<frameset rows="100,*">
<frame src="top.htm" NAME="top">
<frameset cols="160,*">
<frame src="left.htm" NAME="left">
<frame src="right.htm" NAME="right">
</frameset>
</frameset>
<body>
</body>
<noframes>
<a href="your main page.html">Click Here</a>
</noframes>
</html>
Okay, I want to put the same css code throughout the whole page.... can I just put it in my index so I won't have to put it on each individual page?
<html>
<head>
<title> Page Title</title>
</head>
<frameset rows="100,*">
<frame src="top.htm" NAME="top">
<frameset cols="160,*">
<frame src="left.htm" NAME="left">
<frame src="right.htm" NAME="right">
</frameset>
</frameset>
<body>
</body>
<noframes>
<a href="your main page.html">Click Here</a>
</noframes>
</html>
Okay, I want to put the same css code throughout the whole page.... can I just put it in my index so I won't have to put it on each individual page?