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

Carolina Borba

@anacarolinabmvNorway510 points

👋 Hey there! I'm Carolina, a passionate aspiring frontend developer with a keen eye for elegant design and a love for clean code. 💻 Currently honing my skills in HTML, CSS, and JavaScript.

I’m currently learning...

- HTML5, CSS3 & JavaScript (ES6+) - React

Latest solutions

  • Responsive FAQ accordion built with SASS and vanilla JS

    #sass/scss#bem

    Carolina Borba•510
    Submitted over 1 year ago

    0 comments
  • Responsive planets fact site with SASS and vanilla JS

    #sass/scss#bem

    Carolina Borba•510
    Submitted over 1 year ago

    0 comments
  • Responsive dictionary app with theme toggle built with SASS/Vanilla JS

    #sass/scss

    Carolina Borba•510
    Submitted over 1 year ago

    0 comments
  • Responsive pricing component using SASS and JS

    #sass/scss#bem

    Carolina Borba•510
    Submitted over 1 year ago

    0 comments
  • Responsive Art Gallery website using SASS and CSS grids

    #sass/scss

    Carolina Borba•510
    Submitted over 1 year ago

    0 comments
  • Responsive time tracking dashboard with dynamic data

    #fetch

    Carolina Borba•510
    Submitted over 1 year ago

    0 comments
View more solutions

Latest comments

  • MelodyPatin•40
    @MelodyPatin
    Submitted over 1 year ago

    Responsive newsletter sign-up form in HTML, CSS & JS

    2
    Carolina Borba•510
    @anacarolinabmv
    Posted over 1 year ago

    Hello Melody, great job on the challenge! The design is on point and the responsiveness works pretty well for most of the widths. However between 1000px and 900px the design is a bit off (the picture doesn't fill the whole space and is aligned to the top of the container).

    I took a quick look at your code and everything seems fine. Very clean code and easy to understand, awesome! I would just suggest using Regular Expressions to validate the email, as checking if it includes "@" is not strong enough.

    Here is an example of how to do it:

      const regex =
        /^(([^<>()[\]\\.,;:\s@"]+(\.[^<>()[\]\\.,;:\s@"]+)*)|.(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
      return regex.test(email);
    };
    
    validateEmail('example@email.com');  //returns true
    validateEmail('example@email');  //returns false
    

    Hope this helps! Happy coding ✨

    Marked as helpful
  • MaximilianoDanielGarcia•1,980
    @MaximilianoDanielGarcia
    Submitted over 1 year ago

    Pricing component - Using Flex Box

    1
    Carolina Borba•510
    @anacarolinabmv
    Posted over 1 year ago

    Hey, great job on your pricing component. The design is on point and it looks very sleek :D If there is just one thing I suggest you could change, is to add a transition when you change states (eg.: hover buttons), that way we don't get that "jumpy" effect when you hover over it. Other than that, great job. Happy coding ✨

    Marked as helpful
  • Abhishek•50
    @Abhishek123a45
    Submitted over 1 year ago

    Expenses Chart Component Solution

    1
    Carolina Borba•510
    @anacarolinabmv
    Posted over 1 year ago

    Hello Abhishek, great job the the project :D Quick design tip: add some padding to both of your containers, the text is way to close to the edges. As the for two question you asked, I can help you with the first one: there are two easy ways in which you can use the json files. The first one is with a simple fetch request:

    fetch('data.json') .then((response) => response.json()) .then((data) => console.log(data));

    Or if you are familiar with asynchronous JS, you can use async/await to fetch you data.

    const getData = async function () { const request = await fetch('data.json'); const data = await request.json(); console.log(data); //Data is available to use as if this was synchronous code };

    Hope my comment is of any help. Happy coding ✨

    Marked as helpful
  • Mohamed Ragheb•560
    @mohamed-fm
    Submitted over 1 year ago

    Testimonials-section-with-flex-box

    1
    Carolina Borba•510
    @anacarolinabmv
    Posted over 1 year ago

    Hello Mohammed, great job at completing the challenge! You mentioned you used flexbox to design the layout, however I'd suggest using display:grid instead. By doing so, you would not need to wrap the cards in parent containers in order to create the flexbox containers. And with the spanning properties of grid, creating two dimensional layouts are super simple, once you don't need to define individual properties for each card (eg. height margins etc..).

    I have also completed this challenge using CSS Grids, feel free to check it out. :) Happy coding ✨

    Marked as helpful
  • Monika•270
    @Mooonika90
    Submitted almost 2 years ago

    fm-ip-address-tracker

    #accessibility#fetch#react
    3
    Carolina Borba•510
    @anacarolinabmv
    Posted almost 2 years ago

    Maybe it only happens to me because of my screen size, and it's not a big deal at all since the container is visible if I scroll up. However I thought I'd let you know :D

    I don't know if there is a way to upload images directly here, so I have a link for the screenshot.

    IP Tracker Screenshot

  • Monika•270
    @Mooonika90
    Submitted almost 2 years ago

    fm-ip-address-tracker

    #accessibility#fetch#react
    3
    Carolina Borba•510
    @anacarolinabmv
    Posted almost 2 years ago

    Hello Monika, good job on your project 😎 I have just one remark for you: when you click on the zoom control buttons on the left side of the app, the map expands to occupy the entire viewport(which I am sure it is what you intended, I haven't looked at your code), however the container with the IP address info gets pushed to the top and its content gets partially hidden. That's my only remark, other than it looks awesome. Happy coding! ✨

View more comments
Frontend Mentor logo

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