This is a solution to the Clipboard landing page challenge on Frontend Mentor. Frontend Mentor challenges help you improve your coding skills by building realistic projects.
Users should be able to:
- View the optimal layout for the site depending on their device's screen size
- See hover states for all interactive elements on the page
- View more screenshots here
- Solution URL: Solution here
- Live Site URL: Live site here
- Semantic HTML5 markup
- CSS custom properties
- Flexbox
- CSS Grid
- I had trouble using linking images in CSS using
url()
because i forgot to wrap the file path in double quotes ("")
.selector {
background-image: url("path/to/file.jpg");
}
- learnt to use
position: sticky
.attribution {
position: sticky;
bottom: 0;
}
- using SVG files as
<img>
, inline<svg>
element and as an<object>
in HTML
- working with SVG files and creating fallbacks for them
- breakpoints for responsiveness and view-port units
- Using SVG - CSS tricks - This helped me while using SVG files.
- Website - Stanmancer
- Frontend Mentor - @stanmancer
- Twitter - @stanmancer
Hats-off 🎩 to @SanDiego2049 for his help
when my code was after my life mental health😅.