Save your file in NoteTab to a suitable folder, i.e. c:\website\first.html
Open Firefox, File > Open File... (go to the saved file) > Open
You should see you web document.
Start learning here: http://www.w3schools.com/default.asp
Template for html document:
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<title>Basic HTML</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="copyright" content="Basic HTML">
<meta name="keywords" content="Basic HTML">
<meta name="description" content="HTML template">
<script type="text/javascript">
// JavaScript here
</script>
<style type="text/css">
/* CSS goes here */
</style>
</head>
<body>
<!--document contents here -->
<h1>Hello world!</h1>
</body>
</html>
Last edited by Fang; 04-05-2006 at 01:06 PM.
At least 98% of internet users' DNA is identical to that of chimpanzees
Bookmarks