Notebook HTML

Alex van Buitenen

This is not a HTML tutorial or Quick Reference.
It is just my personal notebook for HTML.

Adding an inset border.

Add a style tag withing the header tag:

<style type="text/css">
.borderInset { border: medium inset #CFCFCF; }
</style>

Use the borderInset class in, for example, a paragraph:

<p class="borderInset">
    bla bla
</p>