Boluwatife Bonaventure
@BoyutifeAll comments
- @S1S4Submitted over 1 year ago@BoyutifePosted over 1 year ago
Hi Cesar Perezโ ๐. Congratulations on successfully completing the challenge! ๐
HTML:๐๐
-
Great job on using the p tag in your content! I wanted to offer a suggestion that could help improve the accessibility of your page. Currently, it looks like you have p tag in your content, but it might be more helpful to use an h1 tag instead. This is because using an h1 tag as the main heading on your page can improve accessibility and make it easier for users to navigate your content.
-
In general, it's a good idea to use only one h1 tag on each page, followed by h2 and h3 tags to organize your content. This will not only help with accessibility, but also make it easier for search engines to understand the structure of your page.
-
So, my suggestion is to consider using an h1 tag as your main heading, followed by h2 and h3 tags as needed to organize your content. This will help improve the accessibility and usability of your page for all users.
-
Also, instead of using a div tag to wrap your content, you might consider using a main tag, which is more semantically appropriate for indicating the primary content of your webpage
<main class="main-container"> <div class="qr-container"> <img src="./images/image-qr-code.png" alt="QR-code-image"> <div class="content"> <h1>Improve your front-end skills by building projects</h1> <p>Scan the QR code to visit Frontend Mentor and take your coding skills to the next level</p> </div> </div> </main>
STYLE: ๐จ๐จ
You considering using relative units like em and rem rather than fixed units like px for your styling because of the following :
-
Accessibility: Using relative units can improve accessibility for users who may need to increase the font size or zoom in on a web page. With relative units, the font and layout will adjust accordingly, making it easier for users to read and interact with the content.
-
Responsive design: Relative units can also make your design more responsive, as they allow your layout to adapt to different screen sizes and device types. This can be especially important for mobile devices, where screen sizes can vary significantly.
-
Consistency: Relative units can help maintain consistency across your design, as they ensure that fonts and layout elements are sized in proportion to each other. This can make your design look more polished and professional.
-
Scalability: Finally, using relative units can make your code more scalable and easier to maintain, as changes to font or layout sizes can be made in one place and affect the entire design.
-
In conclusion, to make your design more centralized and compact, you might consider setting a max-height and max-width property for your main container. This can help ensure that your content is displayed in a consistent and visually appealing manner, especially on smaller screens.
I hope these suggestions are helpful and will lead to an even better final product. Let me know if you have any further questions or need additional assistance!
HAPPY CODING
Marked as helpful1 -
- @roger-hopeSubmitted over 1 year ago@BoyutifePosted over 1 year ago
Hi roger-hopeโ ๐. Congratulations on successfully completing the challenge! ๐
HTML:๐๐
-
Great job on using the h3 tag in your content! I wanted to offer a suggestion that could help improve the accessibility of your page. Currently, it looks like you have h3 tag in your content, but it might be more helpful to users if you use an h1 tag instead. This is because using an h1 tag as the main heading on your page can improve accessibility and make it easier for users to navigate your content.
-
In general, it's a good idea to use only one h1 tag on each page, followed by h2 and h3 tags to organize your content. This will not only help with accessibility, but also make it easier for search engines to understand the structure of your page.
-
So, my suggestion is to consider using an h1 tag as your main heading, followed by h2 and h3 tags as needed to organize your content. This will help improve the accessibility and usability of your page for all users.
-
Also, instead of using a div tag to wrap your content, you might consider using a main tag, which is more semantically appropriate for indicating the primary content of your webpage
<main class="card"> <img src="images/image-qr-code.png" alt="qr-code-image"> <h1>Improve your front-end skills by building projects</h1> <p> Scan the QR code to visit Frontend Mentor and take your coding skills to the next level</p> </main>
- In conclusion, to make your design more centralized and compact, you might consider setting a max-height and max-width property for your main container. This can help ensure that your content is displayed in a consistent and visually appealing manner, especially on smaller screens.
I hope these suggestions are helpful and will lead to an even better final product. Let me know if you have any further questions or need additional assistance!
HAPPY CODING
0 -
- @AhmetFMSubmitted over 1 year ago@BoyutifePosted over 1 year ago
Hi Ahmet Furkan Meriรงโ ๐. Congratulations on successfully completing the challenge! ๐
Great Job
HTML:๐๐
-
Great job on using the h3 tag in your content! I wanted to offer a suggestion that could help improve the accessibility of your page. Currently, it looks like you have h3 tag in your content, but it might be more helpful to users if you use an h1 tag instead. This is because using an h1 tag as the main heading on your page can improve accessibility and make it easier for users to navigate your content.
-
In general, it's a good idea to use only one h1 tag on each page, followed by h2 and h3 tags to organize your content. This will not only help with accessibility, but also make it easier for search engines to understand the structure of your page.
-
So, my suggestion is to consider using an h1 tag as your main heading, followed by h2 and h3 tags as needed to organize your content. This will help improve the accessibility and usability of your page for all users.
-
Also, instead of using a div tag to wrap your content, you might consider using a main tag, which is more semantically appropriate for indicating the primary content of your webpage
<main class="card"> <img src="images/image-qr-code.png" alt="qr-code-image"> <h1>Improve your front-end skills by building projects</h1> <p> Scan the QR code to visit Frontend Mentor and take your coding skills to the next level</p> </main>
STYLE: ๐จ๐จ
You considering using relative units like em and rem rather than fixed units like px for your styling because of the following :
-
Accessibility: Using relative units can improve accessibility for users who may need to increase the font size or zoom in on a web page. With relative units, the font and layout will adjust accordingly, making it easier for users to read and interact with the content.
-
Responsive design: Relative units can also make your design more responsive, as they allow your layout to adapt to different screen sizes and device types. This can be especially important for mobile devices, where screen sizes can vary significantly.
-
Consistency: Relative units can help maintain consistency across your design, as they ensure that fonts and layout elements are sized in proportion to each other. This can make your design look more polished and professional.
-
Scalability: Finally, using relative units can make your code more scalable and easier to maintain, as changes to font or layout sizes can be made in one place and affect the entire design.
-
In conclusion, to make your design more centralized and compact, you might consider setting a max-height and max-width property for your main container. This can help ensure that your content is displayed in a consistent and visually appealing manner, especially on smaller screens.
I hope these suggestions are helpful and will lead to an even better final product. Let me know if you have any further questions or need additional assistance!
HAPPY CODING
0 -
- @Stano153Submitted over 1 year ago
Enjoyed this challenge. I am getting comfortable with Html(semantic markup),Css more and more. Let me know what you think and feel free to give any advice and feedback. Looking forward to do another challenge :)
@BoyutifePosted over 1 year agoHi Stanoโ ๐. Congratulations on successfully completing the challenge! ๐
HTML:๐๐
-
Great job on using the h1 tag in your content! I wanted to offer a suggestion that could help improve the accessibility of your page. Currently, it looks like you have multiple h1 tags in your content, but it might be more helpful to users if you use only an h1 tag instead. This is because using an h1 tag as the main heading on your page can improve accessibility and make it easier for users to navigate your content.
-
In general, it's a good idea to use only one h1 tag on each page, followed by h2 and h3 tags to organize your content. This will not only help with accessibility, but also make it easier for search engines to understand the structure of your page.
-
So, my suggestion is to consider using an h1 tag as your main heading, followed by h2 and h3 tags as needed to organize your content. This will help improve the accessibility and usability of your page for all users.
I hope these suggestions are helpful and will lead to an even better final product. Let me know if you have any further questions or need additional assistance!
HAPPY CODING
Marked as helpful0 -
- @MhherceSubmitted over 1 year ago
building the mobile version is what i found difficult
@BoyutifePosted over 1 year agoHi OKORIE OKORO MERCYโ ๐. Congratulations on successfully completing the challenge! ๐
HTML:๐๐
-
Great job on using the h5 tag in your content! I wanted to offer a suggestion that could help improve the accessibility of your page. Currently, it looks like you have h5 tag in your content, but it might be more helpful to users if you use an h1 tag instead. This is because using an h1 tag as the main heading on your page can improve accessibility and make it easier for users to navigate your content.
-
In general, it's a good idea to use only one h1 tag on each page, followed by h2 and h3 tags to organize your content. This will not only help with accessibility, but also make it easier for search engines to understand the structure of your page.
-
So, my suggestion is to consider using an h1 tag as your main heading, followed by h2 and h3 tags as needed to organize your content. This will help improve the accessibility and usability of your page for all users.
-
Also, instead of using a div tag to wrap your content, you might consider using a main tag, which is more semantically appropriate for indicating the primary content of your webpage
<main class="page"> <img src="images/image-qr-code.png" alt="qr-code-image"> <h1>Improve your front-end skills by building projects</h1> <p> Scan the QR code to visit Frontend Mentor and take your coding skills to the next level</p> </main>
STYLE: ๐จ๐จ
You considering using relative units like em and rem rather than fixed units like px for your styling because of the following :
-
Accessibility: Using relative units can improve accessibility for users who may need to increase the font size or zoom in on a web page. With relative units, the font and layout will adjust accordingly, making it easier for users to read and interact with the content.
-
Responsive design: Relative units can also make your design more responsive, as they allow your layout to adapt to different screen sizes and device types. This can be especially important for mobile devices, where screen sizes can vary significantly.
-
Consistency: Relative units can help maintain consistency across your design, as they ensure that fonts and layout elements are sized in proportion to each other. This can make your design look more polished and professional.
-
Scalability: Finally, using relative units can make your code more scalable and easier to maintain, as changes to font or layout sizes can be made in one place and affect the entire design.
-
In conclusion, to make your design more centralized and compact, you might consider setting a max-height and max-width property for your main container. This can help ensure that your content is displayed in a consistent and visually appealing manner, especially on smaller screens.
I hope these suggestions are helpful and will lead to an even better final product. Let me know if you have any further questions or need additional assistance!
HAPPY CODING
0 -
- @who-whySubmitted over 1 year ago
created qr code web page using html css
@BoyutifePosted over 1 year agoHi KISHOR JHAโ ๐. Congratulations on successfully completing the challenge! ๐
HTML:๐๐
-
Great job on using the h3 tag in your content! I wanted to offer a suggestion that could help improve the accessibility of your page. Currently, it looks like you have h3 tag in your content, but it might be more helpful to users if you use an h1 tag instead. This is because using an h1 tag as the main heading on your page can improve accessibility and make it easier for users to navigate your content.
-
In general, it's a good idea to use only one h1 tag on each page, followed by h2 and h3 tags to organize your content. This will not only help with accessibility, but also make it easier for search engines to understand the structure of your page.
-
So, my suggestion is to consider using an h1 tag as your main heading, followed by h2 and h3 tags as needed to organize your content. This will help improve the accessibility and usability of your page for all users.
-
Also, instead of using a div tag to wrap your content, you might consider using a main tag, which is more semantically appropriate for indicating the primary content of your webpage
<main class="card"> <img src="images/image-qr-code.png" alt="qr-code-image"> <h1>Improve your front-end skills by building projects</h1> <p> Scan the QR code to visit Frontend Mentor and take your coding skills to the next level</p> </main>
STYLE: ๐จ๐จ
You considering using relative units like em and rem rather than fixed units like px for your styling because of the following :
-
Accessibility: Using relative units can improve accessibility for users who may need to increase the font size or zoom in on a web page. With relative units, the font and layout will adjust accordingly, making it easier for users to read and interact with the content.
-
Responsive design: Relative units can also make your design more responsive, as they allow your layout to adapt to different screen sizes and device types. This can be especially important for mobile devices, where screen sizes can vary significantly.
-
Consistency: Relative units can help maintain consistency across your design, as they ensure that fonts and layout elements are sized in proportion to each other. This can make your design look more polished and professional.
-
Scalability: Finally, using relative units can make your code more scalable and easier to maintain, as changes to font or layout sizes can be made in one place and affect the entire design.
-
In conclusion, to make your design more centralized and compact, you might consider setting a max-height and max-width property for your main container. This can help ensure that your content is displayed in a consistent and visually appealing manner, especially on smaller screens.
I hope these suggestions are helpful and will lead to an even better final product. Let me know if you have any further questions or need additional assistance!
HAPPY CODING
0 -
- @hassan523Submitted over 1 year ago@BoyutifePosted over 1 year ago
Hi Hassan ๐. Congratulations on successfully completing the challenge! ๐
Great work on your markup so far! I have few suggestions that could further improve the structure and design of your webpage.
HTML:๐๐
-
Instead of using a div tag to wrap your content, you might consider using a main tag, which is more semantically appropriate for indicating the primary content of your webpage.
-
In conclusion, to make your design more centralized and compact, you might consider setting a max-height and max-width property for your main container. This can help ensure that your content is displayed in a consistent and visually appealing manner, especially on smaller screens.
I hope these suggestions are helpful and will lead to an even better final product. Let me know if you have any further questions or need additional assistance!
HAPPY CODING
Marked as helpful1 -
- @w-emiSubmitted over 1 year ago@BoyutifePosted over 1 year ago
Hi Natthaโ Wanaemi Immanuella ๐. Congratulations on successfully completing the challenge! ๐
Great work on your markup so far! I have few suggestions that could further improve the structure and design of your webpage.
HTML:๐๐
- Instead of using a div tag to wrap your content, you might consider using a main tag, which is more semantically appropriate for indicating the primary content of your webpage.
STYLE: ๐จ๐จ
You considering using relative units like em and rem rather than fixed units like px for your styling because of the following :
-
Accessibility: Using relative units can improve accessibility for users who may need to increase the font size or zoom in on a web page. With relative units, the font and layout will adjust accordingly, making it easier for users to read and interact with the content.
-
Responsive design: Relative units can also make your design more responsive, as they allow your layout to adapt to different screen sizes and device types. This can be especially important for mobile devices, where screen sizes can vary significantly.
-
Consistency: Relative units can help maintain consistency across your design, as they ensure that fonts and layout elements are sized in proportion to each other. This can make your design look more polished and professional.
-
Scalability: Finally, using relative units can make your code more scalable and easier to maintain, as changes to font or layout sizes can be made in one place and affect the entire design.
I hope these suggestions are helpful and will lead to an even better final product. Let me know if you have any further questions or need additional assistance!
HAPPY CODING
0 - @dmuriSubmitted over 1 year ago
During this project, I learned a lot about grid, flexbox, how to utilize variables and utility functions in CSS, and how to structure my HTML and CSS code for better readability and maintainability. This project helped me improve my skills in front-end development and gave me a better understanding of how to create responsive layouts that look great on all screen sizes.
@BoyutifePosted over 1 year agoHi โDANIEL MURI ๐. Congratulations on successfully completing the challenge! ๐
Great work on your markup so far! I have few suggestions that could further improve the structure and design of your webpage.
HTML:๐๐๐
- Also, instead of using a div tag to wrap your content, you might consider using a main tag, which is more semantically appropriate for indicating the primary content of your webpage. In conclusion, to make your design more centralized and compact, you might consider setting a max-height and max-width property for your main container. This can help ensure that your content is displayed in a consistent and visually appealing manner, especially on smaller screens.
STYLE: ๐จ๐จ
You considering using relative units like em and rem rather than fixed units like px for your styling because of the following :
-
Accessibility: Using relative units can improve accessibility for users who may need to increase the font size or zoom in on a web page. With relative units, the font and layout will adjust accordingly, making it easier for users to read and interact with the content. Responsive design: Relative units can also make your design more responsive, as they allow your layout to adapt to different screen sizes and device types. This can be especially important for mobile devices, where screen sizes can vary significantly.
-
Consistency: Relative units can help maintain consistency across your design, as they ensure that fonts and layout elements are sized in proportion to each other. This can make your design look more polished and professional.
-
Scalability: Finally, using relative units can make your code more scalable and easier to maintain, as changes to font or layout sizes can be made in one place and affect the entire design.
I hope these suggestions are helpful and will lead to an even better final product. Let me know if you have any further questions or need additional assistance!
HAPPY CODING
0 - @VsimdySubmitted over 1 year ago@BoyutifePosted over 1 year ago
Hi โChibuzor victor ๐. Congratulations on successfully completing the challenge! ๐
Great work on your markup so far! I have few suggestions that could further improve the structure and design of your webpage.
HTML:๐๐๐
-
Great job on using the h3 tag in your content! I wanted to offer a suggestion that could help improve the accessibility of your page.
-
My suggestion is to consider using an h1 tag as your main heading, followed by h2 and h3 tags as needed to organize your content. This will help improve the accessibility and usability of your page for all users.In general, it's a good idea to use only one h1 tag on each page, followed by h2 and h3 tags to organize your content. This is because using an h1 tag as the main heading on your page can improve accessibility and make it easier for users to navigate your content.
-
This will not only help with accessibility, but also make it easier for search engines to understand the structure of your page.
-
Also, instead of using a div tag to wrap your content, you might consider using a main tag, which is more semantically appropriate for indicating the primary content of your webpage. In conclusion, to make your design more centralized and compact, you might consider setting a max-height and max-width property for your main container. This can help ensure that your content is displayed in a consistent and visually appealing manner, especially on smaller screens.
STYLE: ๐จ๐จ
You considering using relative units like em and rem rather than fixed units like px for your styling because of the following :
-
Accessibility: Using relative units can improve accessibility for users who may need to increase the font size or zoom in on a web page. With relative units, the font and layout will adjust accordingly, making it easier for users to read and interact with the content. Responsive design: Relative units can also make your design more responsive, as they allow your layout to adapt to different screen sizes and device types. This can be especially important for mobile devices, where screen sizes can vary significantly.
-
Consistency: Relative units can help maintain consistency across your design, as they ensure that fonts and layout elements are sized in proportion to each other. This can make your design look more polished and professional. Scalability: Finally, using relative units can make your code more scalable and easier to maintain, as changes to font or layout sizes can be made in one place and affect the entire design.
I hope these suggestions are helpful and will lead to an even better final product. Let me know if you have any further questions or need additional assistance!
HAPPY CODING
Marked as helpful0 -
- @seoyulcreativeSubmitted over 1 year ago
Had so much hard time naming classes and how to code CSS efficiently. I would be very grateful if someone provide tips to write HTML/CSS bit more simple and efficient! and I may have use lots of unnecessary codes since I'm not practiced enough to know exatly which code to use. Thanks for the help in advance :)
@BoyutifePosted over 1 year agoHi Natthaโ Potchanadโ ๐. Congratulations on successfully completing the challenge! ๐
Great work on your markup so far! I have few suggestions that could further improve the structure and design of your webpage.
HTML:๐๐
I noticed you wrapped your entire content in a div. Instead of using a div tag to wrap your content, you might consider using a main tag, which is more semantically appropriate for indicating the primary content of your webpage.
Just a quick observation: it's important to include heading tags (<h1>, <h2>, etc.) in your content. According to standard web design practices, an <h1> tag should be used at the beginning, followed by the <h2> tag, and so on. This means you can't use an <h3> tag without first including an <h1> and <h2>. Headings are important for organizing your content and making it more accessible to users, so be sure to include them in your webpage.
<div class="summary-box-con">
Another suggestion I have is to consider using a <ul> tag for the elements you currently have with identical properties. This can be helpful in creating a more responsive design, and could also result in a reduction in the amount of CSS required. By using children and type selectors in your CSS, you can target each element without needing to add a class attribute to them in your HTML. This can make your code more streamlined and easier to maintain in the long run.
STYLE: ๐จ๐จ
You considering using relative units like em and rem rather than fixed units like px for your styling because of the following :
-Accessibility: Using relative units can improve accessibility for users who may need to increase the font size or zoom in on a web page. With relative units, the font and layout will adjust accordingly, making it easier for users to read and interact with the content.
-Responsive design: Relative units can also make your design more responsive, as they allow your layout to adapt to different screen sizes and device types. This can be especially important for mobile devices, where screen sizes can vary significantly.
-Consistency: Relative units can help maintain consistency across your design, as they ensure that fonts and layout elements are sized in proportion to each other. This can make your design look more polished and professional.
-Scalability: Finally, using relative units can make your code more scalable and easier to maintain, as changes to font or layout sizes can be made in one place and affect the entire design.
In conclusion, to make your design more centralized and compact, you might consider setting a max-height and max-width property for your main container. This can help ensure that your content is displayed in a consistent and visually appealing manner, especially on smaller screens.
I hope these suggestions are helpful and will lead to an even better final product. Let me know if you have any further questions or need additional assistance!
HAPPY CODING
Marked as helpful0 - @mewpotchanadSubmitted over 1 year ago@BoyutifePosted over 1 year ago
Hi Natthaโ Potchanadโ ๐. Congratulations on successfully completing the challenge! ๐
Great work on your markup so far! I have few suggestions that could further improve the structure and design of your webpage.
STYLE: ๐จ๐จ
You considering using relative units like em and rem rather than fixed units like px for your styling because of the following :
-
Accessibility: Using relative units can improve accessibility for users who may need to increase the font size or zoom in on a web page. With relative units, the font and layout will adjust accordingly, making it easier for users to read and interact with the content.
-
Responsive design: Relative units can also make your design more responsive, as they allow your layout to adapt to different screen sizes and device types. This can be especially important for mobile devices, where screen sizes can vary significantly.
-
Consistency: Relative units can help maintain consistency across your design, as they ensure that fonts and layout elements are sized in proportion to each other. This can make your design look more polished and professional.
-
Scalability: Finally, using relative units can make your code more scalable and easier to maintain, as changes to font or layout sizes can be made in one place and affect the entire design.
Also, instead of using a div tag to wrap your content, you might consider using a main tag, which is more semantically appropriate for indicating the primary content of your webpage.
In conclusion, to make your design more centralized and compact, you might consider setting a max-height and max-width property for your main container. This can help ensure that your content is displayed in a consistent and visually appealing manner, especially on smaller screens.
I hope these suggestions are helpful and will lead to an even better final product. Let me know if you have any further questions or need additional assistance!
HAPPY CODING
0 -