<html>
<head>
<title>Just a Test!</title>
<link rel=stylesheet type="text/css" href="style1.css">
</head>
<body>
<h1>Welcome</h1>
Please click
<a href="http://www.sdsu.edu">here</a>
for SDSU's web page.
</body>
</html>
|
A:link { color: red;
background: green;
text-decoration: none; }
A:visited { color: black;
background: red;
text-decoration: none; }
H1 {font:80pt Verdana, Arial;color:#00FF00;font-weight:bold;}
|
<html>
<head>
<title>Just a Test!</title>
|
<style> or <style type="text/css"> or Netscape's <style type="text/javascript"> |
H1 { font:80pt Verdana, Arial; color:#FF0000; font-weight:bold; }
</style>
</head>
<body>
<h1>Welcome</h1>
Please click
<a href="http://www.sdsu.edu">here</a>
for SDSU's web page.
</body>
</html>
|
... <body> ... <H3 style="font-family: Arial; font-style: italic; color: green"> This is green, italic, Arial H3-sized header </H3> <H3>And this is a normal H3-sized header</H3> ... </body> ... |
<h3 style="color:#FF0000; text-decoration:blink; background:#FFFF00;">TRY IT NOW !</h3>
<html>
<head>
<title>Just a Test!</title>
<style type="text/css">
@import url("basic.css")
</style>
</head>
...
|