
Hexer
@EmmanuelHexerAll comments
- @catherineisonline@EmmanuelHexer
Wow, good job. i want to ask what you use to make your design exactly like the original one, I mean in measurements and everything?
- @TosinAyedun@EmmanuelHexer
-
Great work, In these instances i wouldn't recommend you to use media queries because the design can be responsive on their own in these cases.
-
I think if you want to know more about media queries you should search on youtube and watch some tutorials about them.
-
Also use rems instead of px this also helps in responsiveness.
I hope this helps. You can also check out my solution to see how i did it.
Marked as helpful -
- @vanzasetia@EmmanuelHexer
Hi, checked all your projects and i must say, you are really good.
I started programming about a month ago, I'm still learning html and css now. Can you give me a roadmap on what you did to become as good as you are now? I hope to hear from you soon.
Thanks, Phalcin
- @vanzasetia@EmmanuelHexer
Hi, checked all your projects and i must say, you are really good.
I started programming not long ago, I'm still learning. Can you give me a roadmap on what you did to become good as you are now?
Thanks, Phalcin
- P@obriedan@EmmanuelHexer
Hi Daniel, I took some time to look at your solution and you did a great job!
However I have some tips for improving your code:
- Note that all
img
elements should have analt
attribute. By adding this it will prevent you from having html and accessibility issues here.
Hope this help and happy coding!
- Note that all
- @imendh02@EmmanuelHexer
Hi Imen, I took some time to look at your solution and you did a great job!
However I have some tips for improving your code:
- Note that every section should have a header tag like <h1-h6> element. This will help you avoid html issues here.
Hope this help and happy coding!
- @Akash-pugazh@EmmanuelHexer
Hi @Akash-pugazh, I took some time to look at your solution and you did a great job!
However I have some tips for improving your code:
-
Avoid using in-line styles in your html. Use css to style your page on a seperate document. What i mean is you should'nt use ie
color: #fb2342
in your html but rather do it in css file. -
wrap your card in a <main> element to fix accessibility issues.
Hope this help and happy coding!
Marked as helpful -
- @jill-spencer@EmmanuelHexer
Hi Jill, I took some time to look at your solution and you did a great job!
Also I have some tips for improving your code:
- add main tag and wrap the card for Accessibility
- add some box-shadow to the container also to show that its a card.
Hope this help and happy coding!
Marked as helpful - @PanMikolaj@EmmanuelHexer
Congratulations on completing this challenge Rudynieradosny.
I have some tips to fix accessiblity issues:
- wrap your card in a
main
element to fix accessibility issues. Just place themain
element after thebody
element and them move the content in.
i hope this is helpful and goodluck!
Marked as helpful - wrap your card in a
- @viniciusdsv93@EmmanuelHexer
Congratulations Vinicius on completing this challenge.
-
Note that header tags are used so that the browser and search engines can identify what they are. They are not used so that the headers becomes big or small.
-
Use one h1 for every webpage, then you move on to h2. If you have other headers in the same section use h3. This will fix your accessibility issues also.
I hope this helps.
Marked as helpful -
- @beatrizang@EmmanuelHexer
Congratulations Beatriz on completing this challenge.
- However i checked your code and i noticed you used h1 then you directly moved on to using
h3's
instead ofh2's
. one tip i can give you is to use oneh1
for every webpage, thenh2
. If you have other headers in the same section you can useh3
. This will prevent having accessibility.
I hope this helps.
Marked as helpful - However i checked your code and i noticed you used h1 then you directly moved on to using
- @mounir-m4@EmmanuelHexer
Hi Mounir, congratulations on completing this challenge.
I have some tips on how to improve your code.
-
Note that element
div
is not allowed as child of elementul
-
Always note that when ever your add a
section
to your code it must have a header tag likeh2
, And if it has other headers in that sectionh3
I hope this helps.
Marked as helpful -
- @AbdouHichem@EmmanuelHexer
Hello Bouzar , congratulations on completing this challenge.
I have some tips to improve your code.
- Always use one h1 element for every webpage. Then use h2 for the others. If you have other children headers use h3. This will prevent accessibility issues.
i hope this is helpful and goodluck!
- @marianojugo@EmmanuelHexer
Hello Mariano , congratulations on completing this challenge.
I have some tips to fix accessiblity issues:
- wrap your card in a <main> element to fix accessibility issues.
i hope this is helpful and goodluck!
- @Jihad101@EmmanuelHexer
Hello Jihad , congratulations on completing this challenge.
I have some tips to fix accessiblity issues:
- wrap your card in a <main> element to fix accessibility issues.
i hope this is helpful and goodluck!
Marked as helpful - @marianojugo@EmmanuelHexer
Congratulations on completing this challenge.
- One tip i can give you is to always note that every section should contain a header tag. like one
h1
for every webpage andh2
. Then if you have other headers in the section addh3
. This will help fix any html issues.
Marked as helpful - One tip i can give you is to always note that every section should contain a header tag. like one
- @migsilva89@EmmanuelHexer
Hi Miguel, congratulations on finishing this challenge.
I have some tips on how you can improve your code.
- Wrap your card in a
main
element to fix accessibility issues by placing it just after thebody
element and draging your content inside.
I hope this helps.
Marked as helpful - Wrap your card in a
- @mayspiek@EmmanuelHexer
Congratulations on completing this challenge.
I have some tips for improving your code. I checked your code and
-
Your linked stylesheet is missing something in the head.
<link rel="stylesheet" type="text/css" href="stylesheet.css" media="screen"
It is missing>
sign. -
Also add a height of 100vh to your
.content
section to center your container.
i hope this helps.
Marked as helpful -