Monday, November 12, 2012

HTML Cheat Sheet

I have been doing quite a bit of coding lately, but since I do not do this everyday I have trouble remember coding I need for even simple code tidbits. So I created a sheet cheat for myself, so I thought I would share what I have been looking up constantly lately:

Dashes
em dash(—) —
en dash(–) –

Styles
<div style="font-size: 18px;
                    font-style:italic;
                    border-right: 1px #7c1120"></div>


Tables ( I have been working in word press and needed to use tables to create columns)

<table>
     <tr>
     <td></td>
     </tr>
</table>



Always check your closing tags </> is very important, and can mess up your code badly if you forget to do it.

No comments:

Post a Comment

Thanks for commenting on Design Morsels.