diff options
author | Adam Spragg <adam@spra.gg> | 2018-06-06 13:25:07 +0100 |
---|---|---|
committer | Adam Spragg <adam@spra.gg> | 2018-06-06 13:25:07 +0100 |
commit | cb6fe83d9c23730c8ad33cc7d75c03c0afd12f65 (patch) | |
tree | bebe4bc61b8c85d37b4c860162b09ee34a6c4bfa /html/contact | |
parent | 07e873c5febe306fa9159eb7818506bf3dad1bdd (diff) |
Fix HTML validation issues on <html> and <link>
<html> should have a 'lang=""' attribute, and </link> tags are not
allowed by the spec.
Diffstat (limited to 'html/contact')
-rw-r--r-- | html/contact | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/html/contact b/html/contact index 61ccceb..80951a2 100644 --- a/html/contact +++ b/html/contact @@ -1,8 +1,8 @@ <!DOCTYPE html> -<html> +<html lang="en"> <head> <title>Contact - Spragg Software Services Ltd.</title> - <link rel="stylesheet" href="/style/main.css"></link> + <link rel="stylesheet" href="/style/main.css" /> </head> <body> <header> |