@denialgreySubmitted almost 2 years ago
I used this project with Bootstrap, but is it cheating for using bootstrap on this project?
I used this project with Bootstrap, but is it cheating for using bootstrap on this project?
Is it cheating for using bootstrap on this project?
Of course of not! you can use any tool for create your solutions, from vanilla js to any library/framework like react, vue, astro, etc.
However, there are some accesibility errors that should be fix:
img
tag, you can replace backslash \
for slash /
because th backslash is used like path delimiter or escaping characters (in regex).img
tag for give a contexts of the image, for example <img src="..." alt="QR Code" />
.<div class="container-fluid ..."
(div tag) with a main
tag to fix accesibiilty error.<h5>
-> <h1>
.<div class="attribution fixed-bottom">
(div tag) with a semantic footer
tag such as: <footer class="attribution fixed-bottom">
to fix accesibility errors.Great job!