Playing with style sheets

I am going to try looking at all the styles available in my theme via the “styles.css”.  This standard type uses the normal paragraph

Then I looked at the headings:

h1

h2

h3

h4

h5

I then decided to try and change h6 in the stylesheet to put some things in a box:

h6 { border-style: dashed; border-width: 3px; border-left-width: 10px; border-right-width: 10px; border-color: red; }

Here is some stuff in a border. By referring to h2 and using border-style: dashed


Not having being taught html or stylesheets I need a useful reference for all the things I could add.  The website html dog, had an easy to use reference which I could use to add things to/from my stylesheet.I then looked at how to do this with changing the style in the html:

Here was a sample. By adding <p style=border-style: dashed; border-width: 3px 10px;>and then my text beofre closing with</p>

About Austin