1. May fix encoding issues: server uses UTF; HTML file assumes Western (ISO 8859-1).
2. Added strict doctype.

Closing out tags like <br/> and <meta.../> may still be a problem (necessary for XHTML, but wrong for HTML)....

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42673 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/www/clang_video-07-25-2007.html b/www/clang_video-07-25-2007.html
index 594064d..8dccc6f 100644
--- a/www/clang_video-07-25-2007.html
+++ b/www/clang_video-07-25-2007.html
@@ -1,9 +1,8 @@
-<!--

-Consulted:

-HTML 4.01 specs: http://www.w3.org/TR/html401/

--->

+<!-- Material used from: HTML 4.01 specs: http://www.w3.org/TR/html401/ -->

+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">

 <html>

 <head>

+	<META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />

 	<title>LLVM 2.0 and Beyond!</title>

 	<link type="text/css" rel="stylesheet" href="menu.css" />

 	<link type="text/css" rel="stylesheet" href="content.css" />