diff options
author | stuebinm | 2021-04-08 15:24:46 +0200 |
---|---|---|
committer | stuebinm | 2021-04-08 15:26:18 +0200 |
commit | b44b99592c7faf0e1984875ec5bf03be09e83f5d (patch) | |
tree | b3d77e0c9f61a6ff70b1511d70e12054d2507d1a /site/thanks.html | |
parent | c255269db0c739400b62d4c4041e3238b1045d22 (diff) |
site: better html attributes
(i.e. defined charset & a main tag)
Diffstat (limited to 'site/thanks.html')
-rw-r--r-- | site/thanks.html | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/site/thanks.html b/site/thanks.html index 1043ec3..1f0a18b 100644 --- a/site/thanks.html +++ b/site/thanks.html @@ -1,12 +1,13 @@ <html> <head> + <meta charset="UTF-8"> <title>Thanks for answering the survey!</title> <link rel="stylesheet" type="text/css" href="style.css"> </head> <body> - <div> + <main> <h1>Thanks for your answers!</h1> <p>Your submission was sent and received successfully.</p> - </div> + </main> </body> </html> |