Skip to content
  • Unlock Pro
  • Log in with GitHub
Profile
OverviewSolutions
10
Comments
7
Rowan
@rowanDeveloper

All comments

  • Joshua muwanguzi•30
    @jmuwan
    Submitted 9 months ago
    What are you most proud of, and what would you do differently next time?

    I am proud that I can do html and CSS very well I am looking forward to use more advanced styles and frameworks

    What challenges did you encounter, and how did you overcome them?

    No much Challenge, just use knowledge from previous projects

    Social Links Profile

    1
    Rowan•230
    @rowanDeveloper
    Posted 9 months ago

    Congratulation on your project @jmuwan! Keep the good work!

    I would like to give you a feedback, if you are ok with that. Looking at your code you can use a main div container as your main container. I would advice you to use more semantic HTML tags, such as <main> and <section>, so instead of a <div> and then the main code, just use <main> and then you can better structure your code:

    `

    <body>
    	<main>
    		...code 
    		
    	</main>
    </body>	
    

    `

    Also, as for the links, because there are links and not buttons, I recommend that you use the <li> tag and then an <a> (anchor) tag. That way you can reference better the links you use. Something like:

    `

     <ul class="list">
    	<li class="list-item">
    	  <a href="#">GitHub</a>
    	</li>
    
    	<li class="list-item">
    	  <a href="#">FrontEnd Mentor</a>
    	</li>
    
    	<li class="list-item">
    	  <a href="#">Linkedin</a>
    	</li>
      </ul>
    

    `

    Keep the progress and feel free to ask the community or go to Discord page if you have any questions. But honestly, I like seeing your progress and I am proud of that!

    Marked as helpful
  • jreitman007•20
    @jreitman007
    Submitted over 1 year ago
    What are you most proud of, and what would you do differently next time?

    Proud that I got it to work. Good first dip into web developmment

    What challenges did you encounter, and how did you overcome them?

    Still learning how to use git and vscode properly. Needed to look at other solutions to learn how to better use html and css. Need a better understanding of how css styling works.

    What specific areas of your project would you like help with?

    It wasn't too big a project, so nothing I need help with right now. Will figure out how to solve the challenges I brought up as they become more relevant for more complicated things.

    First Frontend Product

    1
    Rowan•230
    @rowanDeveloper
    Posted over 1 year ago

    Hi @jreitman007! Congrats on finishing your first challenge! Keep the hard work! I really like your final solution. It is pretty similar to the original design.

    There are a couple of things that you can improve on:

    1. Try and have a habit on separating your style sheet with your HTML. It is a good practice to have all your styling in a separate style sheet. Also, you can apply a body background-color with the body element and having the background-color property.

    2. Try using classes with your HTML tags. With that you can easily manipulate the styles of your HTML elements and organize your workflow with bigger projects.

    3. I will recommend having a "main" div that wraps all your code. By having a main div (div class="main") or a div container you can position better the content within the screen by applying a margin: auto in it, for example.

    Anyhow: congrats on finishing your challenge! And I hope you can continue on learning and improving on your FrontEnd skills!

    Marked as helpful
  • Ajith177•110
    @Ajith177
    Submitted over 1 year ago
    What are you most proud of, and what would you do differently next time?

    The designs is varying from browser to Browser, I have been working on edge but when I opened it in Chrome it is displaying in error-format.

    HTML,CSS,VS-CODE

    1
    Rowan•230
    @rowanDeveloper
    Posted over 1 year ago

    Hi @Ajith177! Congrats on finishing your challenge! I hope it was a good and learning experience for you.

    There a quite some advice I would like to give you:

    1. You can create the rounded corners with the property "border-radius: .5rem" on you div container. That would slightly give a rounded border.

    2. You are struggling with the font-family property. You can apply the font-family "Montserrat" and "Fraunces" by importing the font from Google Fonts and applying the property on your element with the font-family, font-color and font-size property.

    Keep your progress! Also: FrontEnd Mentor is a good community where you can practice your FrontEnd skills with amazing projects and a strong community.

    Marked as helpful
  • Jeff Gicharu•80
    @jeffgicharu
    Submitted over 1 year ago
    What are you most proud of, and what would you do differently next time?

    I'm mainly proud of the fact that I was able to finish this challenge despite being very confused when I started.

    What challenges did you encounter, and how did you overcome them?

    As I was adding styles in the CSS, there was a element which was not behaving as expected when I tried to style it. I overcame the challenge by trying different possible solutions until I found one that worked.

    What specific areas of your project would you like help with?

    I would like help in knowing when to add classes to HTML elements and also in the organization of my CSS.

    QR code component

    3
    Rowan•230
    @rowanDeveloper
    Posted over 1 year ago

    Hi @jeffgicharu,

    Congrats on submitting your first solution! Keep it up! FrontEnd Mentor is a great place to practice and improve your coding skills.

    I took a look at your code and I like the fact that it is pretty clean and concise. I would add some changes, like, for example, using the <main> tag instead of <article> or <section>. The idea is that the <main> tag holds everything. I would also have a div container, just so I could better manipulate the padding and another div for the image-container to better adjust the width and height of the image. But that is just my logic of programming.

    Something like:

             body 
                 <main>
    	            <div class="container">
    		            <div class="image-container">
    			         <img href="./">
    		           </div>
    		           code 
    		
    	             </div>
               </main>
    		 
    

    Overall, congrats on your first project!

    Marked as helpful
  • Allan Hanauer•220
    @allan-hanauer
    Submitted over 1 year ago

    Landing page using FlexBox

    #accessibility
    1
    Rowan•230
    @rowanDeveloper
    Posted over 1 year ago

    Wow! Congrats on your first Challenge @allan-hanauer! Actually, your project seems way better than mine!

    Continue doing more challenge. Unfortunately I'm still a newbie and can't help you with the improvements that you wish to add.

  • EdeRemastering•10
    @EdeRemastering
    Submitted over 1 year ago

    HTML, CSS, flexbox.

    1
    Rowan•230
    @rowanDeveloper
    Posted over 1 year ago

    Hi @EdeRemastering! I really like your project.

    Some improvements that I would like to add is that I think you switched the backgound-color with the .preparation-time background color. In the preview design the body background color is: hsl(30, 54%, 90%);

    Also, I noticed that your font-color is the default font-color instead of the --wenge-brown: hsl(30, 10%, 34%);

    Congrats on accomplishing your first FrontEnd Mentor challenge!

    Marked as helpful
  • saina-s•30
    @saina-s
    Submitted about 2 years ago

    flexbox - border box

    2
    Rowan•230
    @rowanDeveloper
    Posted about 2 years ago

    Hey Saina's! Great that you are joining the FrontEnd Mentor community! Plus good job on your first challenge.

    Some advice tho, is that I would put everything regarding styles to a stylesheet (like in your case you named it "challenge.css") instead of having styles attributes in the index.html document. I think it will help your code be more consistent and also help you with "parent" and "child" elements on your stylesheet approach.

    I am also curious on what is the solution to align vertically your div container, because on what I can see on your code you are using "justify-content: center" and "align-items: center" on your div which should work.

    Let me know the solution on that when you find out.

    Marked as helpful

Stay up to datewith new challenges, featured solutions, selected articles, and our latest news

Frontend Mentor

  • Unlock Pro
  • Contact us
  • FAQs
  • Become a partner

Explore

  • Learning paths
  • Challenges
  • Solutions
  • Articles

Community

  • Discord
  • Guidelines

For companies

  • Hire developers
  • Train developers
© Frontend Mentor 2019 - 2025
  • Terms
  • Cookie Policy
  • Privacy Policy
  • License

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub