Time to change the HTML Tags > Blank Page?
Posted: Wed Sep 22, 2004 9:59 am
I'm using TextPad 4.7.3 already, and when I used the HTML Tags > Blank Page in the Clip library, I got this:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<HTML>
<HEAD>
<TITLE></TITLE>
<META NAME="Generator" CONTENT="TextPad 4.6">
......
There're two problems here:
1) It's still written "TextPad 4.6" instead of "TextPad 4.7"
2) The Doctype is still using HTML 3.2 !! IMO, it's time to adopt HTML4, even loosely. So I suggest using
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
"http://www.w3.org/TR/REC-html40/loose.dtd">
On the other hand, TextPad should help promote Unicode, so I suggest the following
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8">
<TITLE></TITLE>
......
Or at least, make one more tag called "Blank Page (Unicode)"
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<HTML>
<HEAD>
<TITLE></TITLE>
<META NAME="Generator" CONTENT="TextPad 4.6">
......
There're two problems here:
1) It's still written "TextPad 4.6" instead of "TextPad 4.7"
2) The Doctype is still using HTML 3.2 !! IMO, it's time to adopt HTML4, even loosely. So I suggest using
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
"http://www.w3.org/TR/REC-html40/loose.dtd">
On the other hand, TextPad should help promote Unicode, so I suggest the following
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8">
<TITLE></TITLE>
......
Or at least, make one more tag called "Blank Page (Unicode)"