Skip to content
  • Unlock Pro
  • Log in with GitHub
Profile
OverviewSolutions
24
Comments
7

Jeanco Volfe

@engsofjvolfeBrazil460 points

I am Looking forward for the now moment.

Latest solutions

  • Article preview component

    #accessibility

    Jeanco Volfe•460
    Submitted over 2 years ago

    0 comments
  • Skilled elearning landing page

    #accessibility

    Jeanco Volfe•460
    Submitted over 2 years ago

    1 comment
  • Single page design portfolio

    #accessibility

    Jeanco Volfe•460
    Submitted over 2 years ago

    0 comments
  • Password Generator

    #accessibility

    Jeanco Volfe•460
    Submitted over 2 years ago

    0 comments
  • News Homepage

    #accessibility

    Jeanco Volfe•460
    Submitted over 2 years ago

    0 comments
  • Pre launch Landing page

    #accessibility

    Jeanco Volfe•460
    Submitted over 2 years ago

    0 comments
View more solutions

Latest comments

  • Alejandro Cañon•260
    @alecanonm
    Submitted over 2 years ago

    i managed to do this challenge just using basic concepts of css,html

    #cube-css#backbone
    3
    Jeanco Volfe•460
    @engsofjvolfe
    Posted over 2 years ago

    Hey bro, keep practcing... Heres a thing that u can do to change the fonts:

    To use Google Fonts on your HTML CSS web page, follow these steps:

    Browse to the Google Fonts website at fonts.google.com and select the font(s) you want to use.

    After selecting a font, click on the "Select This Font" button, and then click on the "Embed" tab.

    Copy the code provided under the "@import" or "link" tab. Paste the copied code "link" into the head section of your HTML file. The "@import" you paste on first line of your "principal" css, but choose just "link" or "@import" to use ok?

    Next, add the font family to the CSS styles for the element(s) you want to use it on. For example, if you want to use the "Open Sans" font on all paragraphs on your page, you can add the following CSS:

    css

    p {
      font-family: 'Open Sans', sans-serif;
    }
    

    Note that the font name in the CSS must match the font name in the Google Fonts code.

    Save your HTML and CSS files and view your webpage to see the changes.

    That's it! Your webpage should now be using the Google Font you selected.

    Marked as helpful
  • JIoriatti•10
    @JIoriatti
    Submitted over 2 years ago

    Responsive card layout using CSS and Flexbox

    1
    Jeanco Volfe•460
    @engsofjvolfe
    Posted over 2 years ago

    Hello brother, well done. I'm going to express reasons why i think a mobile first approach could benefit any project. But remember that it's not absolute.If you google it, you will see things as i described and the complete opposite too hahaha. It's on your hand and we need to consider the limitations and the way we are developing our projects

    A mobile-first approach to a project can offer several number of benefits, including:

    Improved User Experience (UX): With a mobile-first approach, the focus is on delivering a positive experience for users on smaller screens, which can result in a better overall experience for all users, regardless of device.
    
    Better Performance: Mobile devices typically have less processing power and slower internet speeds than desktop computers. By designing for smaller screens first, you can ensure that the site or application is optimized for performance on mobile devices.
    
    Increased Accessibility: A mobile-first approach can help ensure that your site or application is accessible to a wider range of users, including those with disabilities who may rely on assistive technologies such as screen readers.
    
    Increased Responsiveness: A mobile-first design approach can help ensure that your site or application is more flexible and adaptable to different screen sizes and orientations, making it easier to create a responsive design that works well across all devices.
    
    Better SEO: Search engines, like Google, now prioritize mobile-friendly sites in their search results, so a mobile-first approach can help improve your site's search engine ranking and visibility.
    

    By focusing on the needs of mobile users first, you can create a site or application that is user-friendly, accessible, fast, and flexible, which can ultimately lead to increased user engagement, satisfaction, and conversion rates

    Marked as helpful
  • Shantanu•100
    @shantanufsd
    Submitted over 2 years ago

    QR Code Landing Page Design

    2
    Jeanco Volfe•460
    @engsofjvolfe
    Posted over 2 years ago

    Great job bro. I'm going to share font from where i have been learning flexbox (or learned), just in case u hadnt seen them yet.

    Take your time to see them:

    Positioning the frog using flexbox A Complete Guide to Flexbox

    The first one helped me a lot to gain memory on container and particularly item properties for flexbox. If u hadnt seen them yet, try it...

    I wish u the best. Happy coding

    Marked as helpful
  • s4nd0•320
    @s4nd0
    Submitted over 2 years ago

    Stats Preview Card using CSS Flexbox

    4
    Jeanco Volfe•460
    @engsofjvolfe
    Posted over 2 years ago

    Hey... nice there...

    To change the color of the image you need to set a background color for the "container" where the image is, so you change the opacity of the image. Doing this way you can see the color of the "container"where the image is set.

    An example would be (CSS):

    .container-img {
         background-color: var(--softViolet);
    }
    
    .container-img>.img-mobile,
    .container-img>.img-desktop {
        opacity: 0.6;
    }
    

    Try something like this, adapt to your own code... if you don't get it, i can provide an answer based on your own coding. Apologize the bad english...

    See you.. Happy coding

    Marked as helpful
  • Ar•460
    @abdmud
    Submitted over 2 years ago

    Huddle Landing Page with Single Introductory Section

    2
    Jeanco Volfe•460
    @engsofjvolfe
    Posted over 2 years ago

    WELL DONE HERE...

    for the border you can use your class .fa-brands, you don't need (necessarily) a div around each icon to make it to be the border, but considering your code on github try this:

    .icon-border{
    border: 1px solid white;
    border-radius: 50%;
    }
    

    The border property will set a 1px border around your icon, and white is the color of the border. The solid" here is like a style, u can check more about it here: Border. The border radius 50% makes the shape circled

    Now try to put things in the center with due spacing for them, use the techniques u probably already know about css positioning. If i could help more, please let me know, i'm not an expert but i'll try my best. Let's learn together.

    Btw, Happy New Year and Happy coding...

    Marked as helpful
  • elidrc•80
    @elidrc
    Submitted over 2 years ago

    Porfile Card Component (HTML, CSS, Mobile First)

    1
    Jeanco Volfe•460
    @engsofjvolfe
    Posted over 2 years ago

    Hello bro... good job u did there, nice and useful...

    just a suggestion:

    You could try/considerate to add some padding to the bottom of the card (maybe it could be even in the main section), so u can create more space and symmetry considering the space that already exists on the top of the card.

    Happy codding, see u around...

    Marked as helpful
View more comments

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

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