summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorRicardo Garcia <[email protected]>2010-11-02 21:28:56 +0100
committerRicardo Garcia <[email protected]>2010-11-02 21:28:56 +0100
commit5de4c645e2076f722c4816189bfe1456fced2e1f (patch)
treee33ecfe15ad0a6dac0ca2736bd8f50b5377f4ccb
parent05703c8f9ccabc113330f15a185136b9a63b4cb9 (diff)
downloadyoutube-dl-5de4c645e2076f722c4816189bfe1456fced2e1f.tar.gz
youtube-dl-5de4c645e2076f722c4816189bfe1456fced2e1f.zip
Make web pages valid HTML and remove a few glitches
-rw-r--r--faq.html7
-rw-r--r--index.html7
-rw-r--r--index.html.in7
-rw-r--r--style.css8
-rw-r--r--windows.html9
5 files changed, 29 insertions, 9 deletions
diff --git a/faq.html b/faq.html
index c8bc64310..d42ef28bd 100644
--- a/faq.html
+++ b/faq.html
@@ -1,7 +1,10 @@
-<html>
+<!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=UTF-8">
<title>youtube-dl Frequently Asked Questions</title>
-<link rel="stylesheet" href="style.css" type="text/css" />
+<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body>
<h1>youtube-dl Frequently Asked Questions</h1>
diff --git a/index.html b/index.html
index 9d4c78dbf..2b6cc40c7 100644
--- a/index.html
+++ b/index.html
@@ -1,7 +1,10 @@
-<html>
+<!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=UTF-8">
<title>youtube-dl</title>
-<link rel="stylesheet" href="style.css" type="text/css" />
+<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body>
<h1>youtube-dl: Download videos from YouTube.com</h1>
diff --git a/index.html.in b/index.html.in
index d7c8f8aa7..dd6c02ce7 100644
--- a/index.html.in
+++ b/index.html.in
@@ -1,7 +1,10 @@
-<html>
+<!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=UTF-8">
<title>youtube-dl</title>
-<link rel="stylesheet" href="style.css" type="text/css" />
+<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body>
<h1>youtube-dl: Download videos from YouTube.com</h1>
diff --git a/style.css b/style.css
index 1464dacec..fa41d6f7f 100644
--- a/style.css
+++ b/style.css
@@ -26,6 +26,14 @@ p {
margin-left: 5%;
margin-right: 5%;
}
+ul {
+ margin-left: 5%;
+ margin-right: 5%;
+}
+li {
+ margin-top: 0.5ex;
+ margin-bottom: 0.5ex;
+}
tt {
background: #dddddd;
}
diff --git a/windows.html b/windows.html
index 686b09a0c..49db6c9a2 100644
--- a/windows.html
+++ b/windows.html
@@ -1,7 +1,10 @@
-<html>
+<!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=UTF-8">
<title>youtube-dl under Windows</title>
-<link rel="stylesheet" href="style.css" type="text/css" />
+<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body>
<h1>youtube-dl under Windows</h1>
@@ -38,7 +41,7 @@
<p>Right click on it and select <em>Cut</em>. Go to the explorer Window we left open previously, right click on an emtpy space and choose <em>Paste</em>. Tadah! Installation finished.</p>
-<p>Now let's suppose I want to download a video to my Windows Desktop. Piece of cake: go to <em>Start</em> > <em>Run</em>, type <tt>cmd</tt> and press the enter key. Type the command <tt>cd desktop</tt> and then type the command <tt>youtube-dl.py "<url>"</tt>, where <tt><url></tt> is a YouTube video URL you can copy from your web browser program address bar, and paste it to the command line interpreter window by right clicking and choosing <em>Paste</em>, for example. Remember commands are always followed by pressing the enter key in the command line interpreter.</p>
+<p>Now let's suppose I want to download a video to my Windows Desktop. Piece of cake: go to <em>Start</em> > <em>Run</em>, type <tt>cmd</tt> and press the enter key. Type the command <tt>cd desktop</tt> and then type the command <tt>youtube-dl.py "&lt;url&gt;"</tt>, where <tt>&lt;url&gt;</tt> is a YouTube video URL you can copy from your web browser program address bar, and paste it to the command line interpreter window by right clicking and choosing <em>Paste</em>, for example. Remember commands are always followed by pressing the enter key in the command line interpreter.</p>
<h2>One final tip</h2>