summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Bratch <l_bratch@yahoo.co.uk>2013-02-15 14:54:32 +0000
committerLuke Bratch <l_bratch@yahoo.co.uk>2013-02-15 14:54:32 +0000
commit916bf324be3d7b34e1e72b5d2ce12945f6342e81 (patch)
tree7f4f0633fe8c09f37cd708cc7f2305a0ec31f576
parent788706609cc540e3532e701b004cb02068e22a9f (diff)
Fix HTML - indentation, doctype, head
-rwxr-xr-xindex.php23
1 files changed, 11 insertions, 12 deletions
diff --git a/index.php b/index.php
index 64f597c..98d74b8 100755
--- a/index.php
+++ b/index.php
@@ -1,15 +1,14 @@
-<!DOCUMENT html>
+<!DOCTYPE html>
<html>
- <head>
- <title>Pastebin</title>
- </head>
+ <head>
+ <title>Pastebin</title>
<meta http-equiv="Content-Type" content="text/html;charset=ISO-8859-1">
- <body>
- <p>Paste Stuff Here!</p>
- <form name="submit_paste" action="submit.php" method="post">
- <textarea cols="100" rows="30" name="paste"></textarea><br />
- <input type="submit" value="Submit" />
- </form>
- </p>
- </body>
+ </head>
+ <body>
+ <p>Paste Stuff Here!</p>
+ <form name="submit_paste" action="submit.php" method="post">
+ <textarea cols="100" rows="30" name="paste"></textarea><br />
+ <input type="submit" value="Submit" />
+ </form>
+ </body>
</html>