How do I write HTML/create a website?
There are a large number of documents and programs on the web to help you write HTML.* * We can not help you write HTML * *. Try searching for these keywords on Google for places to get started:- Beginner's HTML
- HTML
Editors
- Dynamic HTML - The Definitive Reference
- Easy Microsoft FrontPage 2000
- FrontPage Fast and Easy
- JavaScript: The Definitive Guide
- Flash 4! Creative Web Animation
WebMonkey also has excellent resources for Web developers:
To demonstrate what HTML looks like, here is a "Hello World!" sample HTML:
<html>
<head>
<title>Hello World! Sample</title>
</head>
<body>
Hello World!
</body>
</html>
