Monday, January 13, 2014

CSS Font Properties

CSS Font Properties

It's just example. You can change color,size,writing style as you want.



<html>
<head><title>CSS Font Properties</title>

<style type="text/css">
p{
font-size : 50px;
color : blue;
font-family : Comic Sans MS;          (choose any name from MS word)
font-style : italic or bold;
}
</style>

</head>
<body>

<p>CSS Font Properties</p>
</body>
</html>

0 comments:

Post a Comment