Click to See Complete Forum and Search --> : [RESOLVED] NoteTab Light html Editor & Mozilla Firefox


mar0606
04-05-2006, 12:38 PM
I hope somebody will help me with this.


I have downloaded NoteTab Light html editor and also Mozilla Firefox Web Browser. I did this to click between screens i.e. to type in my html in the html editor and then to view my read html on the firefox browser.

but I cannot!

The front page of the Mozilla Firefox Browser is a search page for the internet. I have my html typed in on my html editor and I do not know how to view the read html on the Firefox browser.

On page 81 of Dummies Creating Web page there is a picture of two screens. The bigger one is C:\documents and Settings\Desktop\lists.htm - Microsoft Internet Explorer. This screen shows the read html(which is a list of ordered lists, numbered lists and definition list. Then there is a smaller screen which is lists - Notepad (showing the html for the read lists on the other screen) It is this what I want but do not know how to get it. This is not a wind up. I live alone and have only got the Dummies book to guide me and whatever messages I get from Webdeveloper.com

mar0606
April 5th 2006

Fang
04-05-2006, 01:01 PM
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:
<!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>