Ok! you’ve done your basic xHTML site. Now we’d better make it more styled with CSS. Can you creat a site like this following one:
<html> <title>My firs styled page </title> <head> <style type=”text/css”> body { font-family: arial; color: red; background-color: 00ff00; } h1 { font-family: arial; font-size: 25pt; } </style> </head> <body>
<ul> <li><a href=”homepage.htm”> homepage</a> </li> <li><a href=”musing.htm”> musings</a> </li> <li><a href=”musing.htm”> musings</a> </li> <li><a href=”link.htm”> link</a></li> </ul>
<p> <h1>My 1st style page</h1> <p>welcome to …</p> <p>It lacks of images, but it has style. <br/> <i>Made by Trang</i> </p>
</body> </html>
Comment by trang do — May 1, 2007 @ 4:06 am
RSS feed for comments on this post. TrackBack URI
Name (required)
E-mail (will not be published) (required)
Website
Notify me of follow-up comments via email.
Blog at WordPress.com.
<html>
<title>My firs styled page </title>
<head>
<style type=”text/css”>
body {
font-family: arial;
color: red;
background-color: 00ff00;
}
h1 {
font-family: arial;
font-size: 25pt;
}
</style>
</head>
<body>
<ul>
<li><a href=”homepage.htm”>
homepage</a> </li>
<li><a href=”musing.htm”>
musings</a> </li>
<li><a href=”musing.htm”>
musings</a> </li>
<li><a href=”link.htm”>
link</a></li>
</ul>
<p>
<h1>My 1st style page</h1>
<p>welcome to …</p>
<p>It lacks of images, but it has style.
<br/>
<i>Made by Trang</i>
</p>
</body>
</html>
Comment by trang do — May 1, 2007 @ 4:06 am