Ok, here goes: code code code code
code code and some more code
I have included css for inline and blocks of code in my blog template. They are used above.
Inline:
.code {
font-family: monospace;
font-size: 110%;
}
<span class="code">...</span>
Code block:
.codeblock {
font-family: monospace;
font-size: 110%;
padding-left: 2em;
}
<p class="code">...</p>
Now we'll do a quick check to see what horrible and bizarre effects I get by using the class code in a <p> tag, and more importantly, the class coeblock in a <span> tag.
case 1: a code class in a paragraph
case 2: a codeblock class in an inline span
I have noticed that, sadly, proper html in my widgets tends to be handled wrong.
- I placed <CENTER> around the title - but it just displayed "<CENTER>Blogger ...." in the title bar of my browser
- In the Blog Description, I used a few <br/> tags, but they were automatically converted to <br>
Leave one.