Assuming that it’ll be a while before most browsers attempt to implement most of HTML 5 (a perfectly reasonable assumption) we need to start thinking of ways to tackle the creation and rendering of HTML 5 components in the meantime. Obviously, using the tools of JavaScript and CSS a lot can be accomplished.
<html>
<head>
<style>blah { color: red; }</style>
<script>document.createElement(“blah”)</script>
</head>
<body>
<blah>Hello!</blah>
</body>
</html>
“Using some basic CSS, and a single JavaScript DOM statement, we’ve now implemented at least part of the HTML 5 spec. While it won’t solve everything, it is a promising technique, at the very least.”









What does CSS mean? I mean the letters,
and what do you think the best tool to use for designing a website? the designer I had for a website I work on said he is using PHP, is it a language or what?
I am sorry but I am really an ignorant about those things, I am trying to learn but I am away late,
Thank you very much for letting me coming here and ask you and learn things from you,
Regards.
CSS is Cascading Style Sheets, meaning the style (colours, fonts, styles in general) are separate from HTML content.
PHP is PHP: Hypertext Preprocessor, and it’s a programming language, connecting HTML with MySQL databases.