https://github.com/melvinaguilar/huddle-landing-page-single-section
This is a solution to the "Huddle landing page with a single introductory section" challenge on Frontend Mentor challenges.
https://github.com/melvinaguilar/huddle-landing-page-single-section
front-end frontend-mentor frontend-mentor-challenge frontend-mentor-challenges html html-css responsive sass
Last synced: about 1 month ago
JSON representation
This is a solution to the "Huddle landing page with a single introductory section" challenge on Frontend Mentor challenges.
- Host: GitHub
- URL: https://github.com/melvinaguilar/huddle-landing-page-single-section
- Owner: MelvinAguilar
- Created: 2022-09-25T16:21:56.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-11-15T04:41:39.000Z (over 2 years ago)
- Last Synced: 2025-01-22T11:11:18.338Z (3 months ago)
- Topics: front-end, frontend-mentor, frontend-mentor-challenge, frontend-mentor-challenges, html, html-css, responsive, sass
- Language: SCSS
- Homepage: https://huddle-landing-page-single-section-hdz.vercel.app/
- Size: 328 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Frontend Mentor - Huddle landing page with single introductory section solution

This is a solution to the [Huddle landing page with single introductory section challenge on Frontend Mentor](https://www.frontendmentor.io/challenges/huddle-landing-page-with-a-single-introductory-section-B_2Wvxgi0). Frontend Mentor challenges help you improve your coding skills by building realistic projects.
Links
- Solution URL: [Huddle Landing Page Single Section (SASS + Flexbox + Responsive) | Frontend Mentor](https://www.frontendmentor.io/solutions/huddle-landing-page-single-section-sass-flexbox-responsive-uD0wRltGpo)
- Live Site URL: [https://huddle-landing-page-single-section-hdz.vercel.app/](https://huddle-landing-page-single-section-hdz.vercel.app/)
## Table of contents
- [Overview](#overview)
- [The challenge](#the-challenge)
- [Screenshot](#screenshot)
- [My process](#my-process)
- [Built with](#built-with)
- [Author](#author)
- [Acknowledgments](#acknowledgments)## Overview
### The challenge
Users should be able to:
- View the optimal layout depending on their device's screen size
- See hover and focus states for interactive elements## My process
### Built with
- Semantic HTML5 markup
- Flexbox
- [SASS](https://sass-lang.com/documentation/modules) - Sass modules### Useful resources
[CSS background Property](https://www.w3schools.com/cssref/css3_pr_background.asp)
## Author
- Frontend Mentor - [@melvinaguilar](https://www.frontendmentor.io/profile/melvinaguilar)
## Acknowledgments
When using `sass` in order to build this solution
- Install `sass` if not yet installed:
```bash
npm install -g sass
```- Run build command from command line:
```bash
sass assets/sass/main.scss assets/css/style.css
```- If you want to edit the code and test, in the root folder of this repository, run this command from the command line:
```bash
sass --watch assets/sass/main.scss assets/css/style.css
```## File structure
```
.
├── assets
│ ├── css
│ │ ├── style.css
│ │ └── style.css.map
│ ├── images
│ │ ├── bg-desktop.svg
│ │ ├── bg-mobile.svg
│ │ ├── favicon-32x32.png
│ │ ├── illustration-mockups.svg
│ │ └── logo.svg
│ └── sass
│ ├── abstracts
│ │ ├── _mixins.scss
│ │ └── _variables.scss
│ ├── base
│ │ ├── _page.scss
│ │ └── _reset.scss
│ ├── component
│ │ ├── _buttons.scss
│ │ ├── _heading.scss
│ │ └── _horizontal-list.scss
│ ├── layout
│ │ ├── _footer.scss
│ │ ├── _header.scss
│ │ └── _info-section.scss
│ └── main.scss
├── design
│ ├── active-states.jpg
│ ├── desktop-design.jpg
│ ├── desktop-preview.jpg
│ ├── mobile-design.jpg
│ └── screenshot.png
├── index.html
└── README.md
```