Panji
@pperdanaAll comments
- @BrunoSFioriSubmitted over 1 year ago@pperdanaPosted over 1 year ago
Hello there 👋. Congratulations on successfully completing the challenge!
- I have feedback on your code that could take it to the next level. 🚀
🔎 My suggestions for best practices for your code
-
Use classes and IDs: Use classes and IDs to define styles that can be applied to multiple elements. This way, you can avoid repeating styles for each element and instead define the style once and apply it to all relevant elements.
-
Use inheritance: Use inheritance to avoid repeating styles for child elements that inherit styles from their parent elements. This can help reduce the amount of CSS code needed to style a page.
-
Use variables: Use variables to store values that are used multiple times in your CSS code, such as colors or font sizes. This way, you can change the value in one place and have it applied throughout your CSS code.
-
Use preprocessors: CSS preprocessors like Sass or Less allow you to write more efficient CSS code
I hope you find it useful! 😄
Happy coding🤖
0 - @BrunoSFioriSubmitted over 1 year ago@pperdanaPosted over 1 year ago
Hello there 👋. Congratulations on successfully completing the challenge! 🎉
- I have some additional recommendations for your code that I think you'll find interesting and valuable.
📌 Add
<main>
tag as semantic HTML in code-
The
<main>
tag is a semantic HTML element that is used to define the main content of a web page. -
The
<main>
tag should be used to wrap the primary content of a web page, such as the main article, section, or body of text.
for example code:
<main> <div class='container'> <h1>Article Title</h1> <p>Article content goes here...</p> ....................... </div> </main>
In the example above, the
<main>
tag is used to wrap the<div>
tag, which contains the primary content of the web page. This tells both human readers and search engines that the content inside the<main>
tag is the most important and relevant content on the page.I hope you found this helpful!
Happy coding🤖
0 - @giorgikirtadzeSubmitted over 1 year ago@pperdanaPosted over 1 year ago
Hello there 👋. Congratulations on successfully completing the challenge! 🎉
- I have some additional recommendations for your code that I think you'll find interesting and valuable.
📌 Add
<main>
tag as semantic HTML in code-
The
<main>
tag is a semantic HTML element that is used to define the main content of a web page. -
The
<main>
tag should be used to wrap the primary content of a web page, such as the main article, section, or body of text.
for example code:
<main> <div class='container'> <h1>Article Title</h1> <p>Article content goes here...</p> ....................... </div> </main>
In the example above, the
<main>
tag is used to wrap the<div>
tag, which contains the primary content of the web page. This tells both human readers and search engines that the content inside the<main>
tag is the most important and relevant content on the page.I hope you found this helpful!
Happy coding🤖
0 - @aksteel08Submitted over 1 year ago
Ok so I had issues centering the contents in the div
@pperdanaPosted over 1 year agoHello there 👋. Congratulations on successfully completing the challenge! 🎉
- I have some additional recommendations for your code that I think you'll find interesting and valuable.
📌 Add
<main>
tag as semantic HTML in code-
The
<main>
tag is a semantic HTML element that is used to define the main content of a web page. -
The
<main>
tag should be used to wrap the primary content of a web page, such as the main article, section, or body of text.
for example code:
<main> <div class='container'> <h1>Article Title</h1> <p>Article content goes here...</p> ....................... </div> </main>
In the example above, the
<main>
tag is used to wrap the<div>
tag, which contains the primary content of the web page. This tells both human readers and search engines that the content inside the<main>
tag is the most important and relevant content on the page.I hope you found this helpful!
Happy coding🤖
Marked as helpful0 - @PopsjrSubmitted over 1 year ago
I had a tough time battling with responsiveness on different screen sizes, eventually got somewhere but really looking forward to feedbacks on how I could have achieved this faster and easier. Also any other error that needs to be worked on.
@pperdanaPosted over 1 year agoHello there 👋. Congratulations on successfully completing the challenge! 🎉
- I have some additional recommendations for your code that I think you'll find interesting and valuable.
📌 Add
<main>
tag as semantic HTML in code-
The
<main>
tag is a semantic HTML element that is used to define the main content of a web page. -
The
<main>
tag should be used to wrap the primary content of a web page, such as the main article, section, or body of text.
for example code:
<main> <div class='container'> <h1>Article Title</h1> <p>Article content goes here...</p> ....................... </div> </main>
In the example above, the
<main>
tag is used to wrap the<div>
tag, which contains the primary content of the web page. This tells both human readers and search engines that the content inside the<main>
tag is the most important and relevant content on the page.I hope you found this helpful!
Happy coding🤖
Marked as helpful0 - @joaovictor333Submitted over 1 year ago
This was one more page made with CSS and HTML and I confess that I have to study more about HTML Semantics and also about flex display.
Well, I'm waiting for your feedback
@pperdanaPosted over 1 year agoHello there 👋. Congratulations on successfully completing the challenge! 🎉
- I have some additional recommendations for your code that I think you'll find interesting and valuable.
📌 Add
<footer>
tag as semantic HTML in code-
The
<footer>
tag is another semantic HTML element that is used to define the footer section of a web page. -
The
<footer>
tag should be used to wrap the content that appears at the bottom of a web page, such as copyright notices, contact information, or links to other pages.
for example code:
<footer class="attribution"> Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>. ................................. </footer>
In the example above, the <footer> tag is used to wrap the copyright notice, which is the content that appears at the bottom of the web page. This tells both human readers and search engines that the content inside the <footer> tag is the footer section of the web page.
I hope you found this helpful!
Happy coding🤖
Marked as helpful0 - @bobbe86Submitted over 1 year ago
this project looked simple but when you get into the organization of the components, it gets tricky! I managed with flex box , but it was challenging. Im unsure of the code formatting and length? Please let me know how you planned the layout and what worked best for you. Thank you!
@pperdanaPosted over 1 year agoHello there 👋. Congratulations on successfully completing the challenge! 🎉
- I have some additional recommendations for your code that I think you'll find interesting and valuable.
📌 Add
<footer>
tag as semantic HTML in code-
The
<footer>
tag is another semantic HTML element that is used to define the footer section of a web page. -
The
<footer>
tag should be used to wrap the content that appears at the bottom of a web page, such as copyright notices, contact information, or links to other pages.
for example code:
<footer class="attribution"> Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>. ................................. </footer>
In the example above, the <footer> tag is used to wrap the copyright notice, which is the content that appears at the bottom of the web page. This tells both human readers and search engines that the content inside the <footer> tag is the footer section of the web page.
I hope you found this helpful!
Happy coding🤖
0 - @micaelsantiagoSubmitted over 1 year ago
To consume the API I used the JavaScript Fetch API method.
@pperdanaPosted over 1 year agoHello there👋!! Congratulations on completing this challange.
- I have some additional recommendations for your code that I think you'll find interesting and valuable.
📌 Image element do not have
alt
attributes or you leave it blankfor example code
<img src="./images/icon-dice.svg" alt="">
In this code you should add
alt
in your code<img src="./images/icon-dice.svg" alt="dice">
- This
alt
attribute provides alternative text for images, which is important for accessibility purposes. Screen readers, use the alt attribute to read out loud what the image is about, allowing visually impaired users to understand the content of the page.
I hope you found this helpful! 😊
Happy coding🤖
0 - @ezranaciancenoSubmitted over 1 year ago@pperdanaPosted over 1 year ago
Hello there 👋. Congratulations on successfully completing the challenge! 🎉
- I have some additional recommendations for your code that I think you'll find interesting and valuable.
📌 Add
<main>
tag as semantic HTML in code-
The
<main>
tag is a semantic HTML element that is used to define the main content of a web page. -
The
<main>
tag should be used to wrap the primary content of a web page, such as the main article, section, or body of text.
for example code:
<main> <div class='container'> <h1>Article Title</h1> <p>Article content goes here...</p> ....................... </div> </main>
In the example above, the
<main>
tag is used to wrap the<div>
tag, which contains the primary content of the web page. This tells both human readers and search engines that the content inside the<main>
tag is the most important and relevant content on the page.I hope you found this helpful!
Happy coding🤖
0 - @souza-vitorSubmitted over 1 year ago
Hey, this is my first time using Bulma. Feel free to give tips on how to improve my code. Thanks!
@pperdanaPosted over 1 year agoHello there 👋. Congratulations on successfully completing the challenge! 🎉
- I have some additional recommendations for your code that I think you'll find interesting and valuable.
📌 Add
<main>
tag as semantic HTML in code-
The
<main>
tag is a semantic HTML element that is used to define the main content of a web page. -
The
<main>
tag should be used to wrap the primary content of a web page, such as the main article, section, or body of text.
for example code:
<main> <div class='container'> <h1>Article Title</h1> <p>Article content goes here...</p> ....................... </div> </main>
In the example above, the
<main>
tag is used to wrap the<div>
tag, which contains the primary content of the web page. This tells both human readers and search engines that the content inside the<main>
tag is the most important and relevant content on the page.I hope you found this helpful!
Happy coding🤖
Marked as helpful1 - @justEfereSubmitted over 1 year ago
I think I am writing too much css code. I need to use more pseudo-selectors but seem to forget them easily. Have to work on that.
@pperdanaPosted over 1 year agoHello there👋!! Congratulations on completing this challange.
- I have some additional recommendations for your code that I think you'll find interesting and valuable.
📌 Image element do not have
alt
attributes or you leave it blankfor example code
<img src="images/image-colton.jpg" alt="">
In this code you should add
alt
in your code<img src="images/image-colton.jpg" alt="colton">
- This
alt
attribute provides alternative text for images, which is important for accessibility purposes. Screen readers, use the alt attribute to read out loud what the image is about, allowing visually impaired users to understand the content of the page.
I hope you found this helpful! 😊
Happy coding🤖
Marked as helpful0 - @dineshjrSubmitted over 1 year ago@pperdanaPosted over 1 year ago
Hello there 👋. Congratulations on successfully completing the challenge! 🎉
- I have some additional recommendations for your code that I think you'll find interesting and valuable.
📌 Add
<main>
tag as semantic HTML in code-
The
<main>
tag is a semantic HTML element that is used to define the main content of a web page. -
The
<main>
tag should be used to wrap the primary content of a web page, such as the main article, section, or body of text.
for example code:
<main> <div class='container'> <h1>Article Title</h1> <p>Article content goes here...</p> ....................... </div> </main>
In the example above, the
<main>
tag is used to wrap the<div>
tag, which contains the primary content of the web page. This tells both human readers and search engines that the content inside the<main>
tag is the most important and relevant content on the page.I hope you found this helpful!
Happy coding🤖
Marked as helpful0