Today's Gold Nugget should surprise the HTML programming enthusiasts and provide at least some curiosity to the non-initiated.
There is a lot of talk in the web programming community about correct methods of programming. Officially, if you program a website from scratch today you should be using a technique referred to as Semantic Programming. This is a fancy way to explain that your web page is split into 2 components: your words and your design.
The "words" part of your web page is organized using simple HTML programming. The "design" part of your web page is the cascading style sheet (CSS for short) which includes all your font sizes, colors, background, etc.
Splitting up the words and the design like this makes your website more flexible for future change, but it doesn't necessarily make your website faster. Y...
VIEW FULL GOLD NUGGET