diff options
Diffstat (limited to 'client-web/public')
-rw-r--r-- | client-web/public/assets/style/master.css | 2 | ||||
-rw-r--r-- | client-web/public/start.html | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/client-web/public/assets/style/master.css b/client-web/public/assets/style/master.css index caa8c85..c030f63 100644 --- a/client-web/public/assets/style/master.css +++ b/client-web/public/assets/style/master.css @@ -33,7 +33,7 @@ body { justify-content: left; } -h2 { +h1 { font-weight: 700; margin: 1em; } diff --git a/client-web/public/start.html b/client-web/public/start.html index aa60f35..efb9f22 100644 --- a/client-web/public/start.html +++ b/client-web/public/start.html @@ -8,7 +8,7 @@ </head> <body> <div class="start-box"> - <h2>keks-meet</h2> + <h1>keks-meet</h2> <p>A web conferencing application using webrtc</p> <p> keks-meet is free software! It is licenced under the terms of @@ -29,6 +29,7 @@ room_input.type = "text"; room_input.id = "room-id-input"; room_input.placeholder = "Room ID"; + room_input.ariaLabel = "Room ID" const submit = document.createElement("input"); submit.type = "button"; |