Hallo!
Kann man mit HTML irgendwie ein *.htm-Dokument so verlinken, dass man sie als Quelltext sieht? Also sie quasi als Textdatei öffnet...
Jap. So zum Beispiel...
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Inhalte sinnvoll verstecken</title>
<script type="text/javascript" src="code.js">
function show(){
window.location = "view-source:" + window.location.href
}
</script>
</head>
<body>
<input type="button" value="Quelltext anzeigen" onclick="show()">
</body>
</html>
ciao, ww