Admit it, almost everyone of us have tried their luck with HTML at some point or the other, those code are weird if you look at them at first, but hey, all codes are, if you want to learn a bit more about HTML and especially CSS here is a a cheat sheet to get you started.
Basically, CSS (Cascading Style Sheet) is a document that styles your Hypertext Markup Language (HTML), with CSS HTML would be just text and pictures not styling.
There are 3 styles of style sheets:
- inline styles
Inline styles are styles that are written directly in the tag on the document. Inline styles affect only the tag they are applied to.<a href="" style="text-decoration: none;"> - embedded styles
Embedded styles are styles that are embedded in the head of the document. Embedded styles affect only the tags on the page they are embedded in.<style type="text/css"> p { color: #00f; } </style> - external styles
External styles are styles that are written in a separate document and then attached to various Web documents. External style sheets can affect any document they are attached to.<link rel="stylesheet" type="text/css" href="styles.css" />
This is what The DNetWorks would look without CSS, of course there are some styles remaining, those are in-line.

And here is the Cheat sheet for you guys!
If you have any HTML5/CSS3 Related queries shoot it to [email protected]



