summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorstuebinm2021-04-08 15:24:46 +0200
committerstuebinm2021-04-08 15:26:18 +0200
commitb44b99592c7faf0e1984875ec5bf03be09e83f5d (patch)
treeb3d77e0c9f61a6ff70b1511d70e12054d2507d1a
parentc255269db0c739400b62d4c4041e3238b1045d22 (diff)
site: better html attributes
(i.e. defined charset & a main tag)
-rw-r--r--site/index.html2
-rw-r--r--site/thanks.html5
2 files changed, 4 insertions, 3 deletions
diff --git a/site/index.html b/site/index.html
index cdc3719..ad2d907 100644
--- a/site/index.html
+++ b/site/index.html
@@ -5,7 +5,7 @@
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
- <div id="root">
+ <main id="root">
</body>
<script type="module">
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>