# is an id identifier
.whatever is a class
in your code if you use
Code:
<div id="someName">
Put your lovely content here
</div>
and have this in your css
Code:
#someName {
border: 1px #FF0000;
}
It will reference the id and that div will have a red border of 1 pixel.