#fcleft">




Ever wondered what a page's HTML layout looks like? You can view any page's HTML source code by going to VIEW/PAGE_SOURCE in your Navigator's toolbar. For those of you who want it the easy way, you can copy this code and view the source by just pushing a button on the screen. This script is mostly used in programming languages like Javascript, where you want to show the viewer the HTML of how to make the script.
The source...


<form name="view">
<input type="button" name="source" onclick="vs()" value="View This Page's Source">
</form>
<script language="Javascript">
<!--
// please keep these lines on when you copy the source
// made by: Nicolas - http://www.javascript-page.com

function vs() {
document.location = "view-source:" + document.location.href
}
//-->
</script>