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:
May 1, 2007
5th ques: Can you create a basic xHTML site WITH Style
1 Comment »
RSS feed for comments on this post. TrackBack URI

<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