How to add blockquotes to your CSS Style Sheet and use them on WordPress.
Read more [...]Posts Tagged ‘css’
CSS Basic Custom Style Sheet
24
Dec
The <Style> tags allows you to define style information for an HTML document.
<Style> tags always go in the header of the HTML document.
Example below:
<html>
<head>
<style type="text/css">
h1 {color:red;}
p {color:blue;}
</style>
</head>
<body>
<h1>Header 1</h1>
<p>A paragraph.</p>
</body>
</html>
Please feel free to copy and paste this into a new text document and save it as a .html Read more [...]


