Skip to content

Commit 58f1ed7

Browse files
authored
Merge pull request #491 from Lemoncode/fixaccessibilitybug/#490-2-Improve-html-structure-of-landing-page
Accessibility - 2 improve html structure of landing page
2 parents e79f76b + 7b81b52 commit 58f1ed7

File tree

1 file changed

+21
-20
lines changed

1 file changed

+21
-20
lines changed

index.html

Lines changed: 21 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -129,11 +129,11 @@
129129
padding-top: 0.9rem;
130130
width: 50%;
131131
}
132-
.info__text h3 {
132+
.info__first {
133133
font-weight: 400;
134134
font-size: 30px;
135135
}
136-
.info__text p {
136+
.info__community {
137137
font-size: 24px;
138138
padding-top: 1.2rem;
139139
color: #fc5969;
@@ -200,10 +200,10 @@
200200
.info__text {
201201
padding-top: 0;
202202
}
203-
.info__text h3 {
203+
.info__first {
204204
font-size: 26px;
205205
}
206-
.info__text p {
206+
.info__community {
207207
font-size: 20px;
208208
}
209209
.info__group {
@@ -286,10 +286,10 @@
286286
font-size: 18px;
287287
}
288288

289-
.info__text h3 {
289+
.info__first {
290290
font-size: 22px;
291291
}
292-
.info__text p {
292+
.info__community {
293293
font-size: 19px;
294294
}
295295
.github p {
@@ -341,7 +341,7 @@
341341
</a>
342342
</header>
343343
<main class="main">
344-
<div class="info container">
344+
<section class="info container">
345345
<h1>
346346
<span class="info__company">
347347
<img
@@ -356,12 +356,13 @@ <h1>
356356
</h1>
357357
<div class="info__detail">
358358
<div class="info__text">
359-
<h3>
359+
<p class="info__first">
360360
Mongo Modeler is a <span class="highlight">free</span>, open
361361
source <span class="highlight">tool</span> for visualization of
362362
<span class="highlight">MongoDB</span> schema design
363-
</h3>
364-
<p>Community preview</p>
363+
</p>
364+
365+
<p class="info__community">Community preview</p>
365366
<div class="info__group">
366367
<a href="./editor.html" class="info__link"
367368
>Launch MongoDB Designer</a
@@ -378,17 +379,17 @@ <h3>
378379
></iframe>
379380
</div>
380381
</div>
381-
</div>
382-
<div class="github">
383-
<p class="container">
384-
Interested in suggesting a new feature or reporting a bug? Visit our
385-
project's Github page to make your contribution.
386-
<a href="https://github.com/Lemoncode/mongo-modeler" target="_blank"
387-
>Go to Github</a
388-
>
389-
</p>
390-
</div>
382+
</section>
391383
</main>
384+
<footer class="github">
385+
<p class="container">
386+
Interested in suggesting a new feature or reporting a bug? Visit our
387+
project's Github page to make your contribution.
388+
<a href="https://github.com/Lemoncode/mongo-modeler" target="_blank"
389+
>Go to Github</a
390+
>
391+
</p>
392+
</footer>
392393
<script>
393394
let installPrompt = null;
394395
const installButton = document.querySelector('#install');

0 commit comments

Comments
 (0)