laTortuga
02-20-2003, 06:05 PM
Hello
I have the following CSS between the <head></head> tags:
<style type="text/css">
a:link {color:white;}
a:visited {color:white;}
a:active {color:white;}
body { background:black;
color:white }
div { font-family: verdana; font-style: normal; }
</style>
and further down the page I have a few Response.write statements:
Response.Write "Please click <a href='javascript:history.back(1)'>here</A> to type in your name"
elseif strSubject = "" then
Response.Write "Please click <a href='javascript:history.back(1)'>here</A> to type in your subject</font>"
elseif strMessage = "" then
Response.Write "Please click <a href='javascript:history.back(1)'>here</A> to type in your message"
elseif strEmail = "" then
Response.Write "Please click <a href='javascript:history.back(1)'>here</A> to type in your Email"
end if
Response.End
Can I ask where SHOULD the <div></div> tags go because I keep getting Times Roman as the font face?
Furthermore, some people seem to prefer keeping all the <% %> comments in one part of the page, and HTML/CSS in another (it seems tidier that way), while others (many others, in fact), seem to mingle everything together. Are there any tutorials on this anywhere? Can't seem to find much from a Yahoo! search.
Thanks in advance.
laTortuga
I have the following CSS between the <head></head> tags:
<style type="text/css">
a:link {color:white;}
a:visited {color:white;}
a:active {color:white;}
body { background:black;
color:white }
div { font-family: verdana; font-style: normal; }
</style>
and further down the page I have a few Response.write statements:
Response.Write "Please click <a href='javascript:history.back(1)'>here</A> to type in your name"
elseif strSubject = "" then
Response.Write "Please click <a href='javascript:history.back(1)'>here</A> to type in your subject</font>"
elseif strMessage = "" then
Response.Write "Please click <a href='javascript:history.back(1)'>here</A> to type in your message"
elseif strEmail = "" then
Response.Write "Please click <a href='javascript:history.back(1)'>here</A> to type in your Email"
end if
Response.End
Can I ask where SHOULD the <div></div> tags go because I keep getting Times Roman as the font face?
Furthermore, some people seem to prefer keeping all the <% %> comments in one part of the page, and HTML/CSS in another (it seems tidier that way), while others (many others, in fact), seem to mingle everything together. Are there any tutorials on this anywhere? Can't seem to find much from a Yahoo! search.
Thanks in advance.
laTortuga