This is a solution to the Meet 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 depending on their device's screen size
- See hover states for interactive elements
- Solution URL: GitHub
- Live Site URL: GitHub Pages
- Semantic HTML5 markup
- CSS custom properties
- Flexbox
- CSS Grid
- Figma
Use this section to recap over some of your major learnings while working through this project. Writing these out and providing code samples of areas you want to highlight is a great way to reinforce your own knowledge.
To see how you can add code snippets, see below:
<div class="component-marker2">
<div class="vertical-line"></div>
<div class="circle">02</div>
</div>
It was my first time "drawing" using HTML... section .vertical-line {
background-color: #d1d1d1;
width: 1px;
height: 80px;
display: flex;
justify-content: center;
align-items: center;
margin-left: 25px;
}
section .circle {
width: 56px;
height: 56px;
background-color: #d1d1d1;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
color: white;
font-weight: bold;
}
... And using CSS to visualize it. .footer-hero::before {
content: "";
background-color: #4d96a9;
opacity: 0.5;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
}
First really using z-index and pseudo-elements.
I am looking forward to learning more about z-index, pseudo-elements, and CSS specificity.
- CSS Specificity- CSS-Tricks
- CSS Specificity - w3schools
- Pseudo-Elements - MDN_web_docs
- Pseudo-Elements - MDN_web_docs
- Linkedin - Anjelica May
- Frontend Mentor - Anjie-MF
- Dev.to - anjelica_mf
- Front End Mentor Discord - [chamu_k_m]- Thank you for pointing out that the media queries were wrtiten incorrectly.
- Front End Mentor Discord - [itsdarkstar] - Thank you for pointing out horizontal scrollbar, the excessive amount of grid-columns, and instructions on how to layer the componenent marker.


