Layout (CSS)
Page 1 of 1
Layout (CSS)
I followed the tutorial and found that I can make the text in p any color using the p style= "color:" command, however there is no example showing how to do it using style type in the "text/css"Re: Layout (CSS)
i.e- Code: Select all
<html>
<head>
<title>The CSS Style</title>
<style type="text/css">
p { color:red; }
</style>
</head>
<body>
<p>The Red Text goes Here </p>
</body>
</html>
Page 1 of 1