HTML && CSS Cheat Sheet

HTML Tags

Tag; Description Example
<tr> Creates a table row <tr></tr>
<td> Creates a table cell <td>Content</td>
<th> Creates a table header cell <th>Header</th>
<div> Generic container element <div>Content</div>
<p> Paragraph element <p>Text here</p>
<h1> Main heading <h1>Title</h1>
<a> Anchor/link element <a href="url">Link</a>

CSS Properties

Property Description Example
color Sets text color color: blue;
background-color Sets background color background-color: #f0f0f0;
font-size Sets font size font-size: 16px;
margin Sets outer spacing margin: 10px;
padding Sets inner spacing padding: 15px;
border Sets border around element border: 1px solid black;
width Sets element width width: 100px;
text-align Aligns text text-align: center;