Posts Tagged ‘href’

3 Methods to implement CSS in your website

Sunday, October 7th, 2007

First Method:

<style type=”text/css”>

Next is the HTML code and CSS in a simple webpage

<html>
<head>
<title>CSS Implement v1</title>
<style type=”text/css”>
P {background-color: grey;}

</style>
</head>
<body>
<p>CSS Implements v1 with paragraph background color GREY</p>
</body>
</html>

Second Method:
(more…)