Skip to content

Commit

Permalink
fix(typography): img alt attribute on error pages
Browse files Browse the repository at this point in the history
  • Loading branch information
alfianchii committed Sep 27, 2023
1 parent 7512404 commit 42c27cf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/error-403.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<div class="error-page container">
<div class="col-md-8 col-12 offset-md-2">
<div class="text-center">
<img class="img-error" src="assets/static/images/samples/error-403.svg" alt="Not Found">
<img class="img-error" src="assets/static/images/samples/error-403.svg" alt="Forbidden">
<h1 class="error-title">Forbidden</h1>
<p class="fs-5 text-gray-600">You are unauthorized to see this page.</p>
<a href="index.html" class="btn btn-lg btn-outline-primary mt-3">Go Home</a>
Expand Down
2 changes: 1 addition & 1 deletion src/error-404.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<div class="col-md-8 col-12 offset-md-2">
<div class="text-center">
<img class="img-error" src="assets/static/images/samples/error-404.svg" alt="Not Found">
<h1 class="error-title">NOT FOUND</h1>
<h1 class="error-title">Not Found</h1>
<p class='fs-5 text-gray-600'>The page you are looking not found.</p>
<a href="index.html" class="btn btn-lg btn-outline-primary mt-3">Go Home</a>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/error-500.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<div class="error-page container">
<div class="col-md-8 col-12 offset-md-2">
<div class="text-center">
<img class="img-error" src="assets/static/images/samples/error-500.svg" alt="Not Found">
<img class="img-error" src="assets/static/images/samples/error-500.svg" alt="System Error">
<h1 class="error-title">System Error</h1>
<p class="fs-5 text-gray-600">The website is currently unaivailable. Try again later or contact the
developer.</p>
Expand Down

0 comments on commit 42c27cf

Please sign in to comment.