Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bccpadge/base-apparel-coming-soon-page
Frontend Mentor - Base Apparel Coming Soon Page using HTML, CSS & JavaScript
https://github.com/bccpadge/base-apparel-coming-soon-page
accessibility bem frontend-mentor html-css-javascript lighthouse
Last synced: about 1 month ago
JSON representation
Frontend Mentor - Base Apparel Coming Soon Page using HTML, CSS & JavaScript
- Host: GitHub
- URL: https://github.com/bccpadge/base-apparel-coming-soon-page
- Owner: bccpadge
- Created: 2023-10-03T14:08:04.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-14T03:18:39.000Z (11 months ago)
- Last Synced: 2024-02-14T04:26:30.121Z (11 months ago)
- Topics: accessibility, bem, frontend-mentor, html-css-javascript, lighthouse
- Language: CSS
- Homepage: https://bccpadge.github.io/base-apparel-coming-soon-page/
- Size: 960 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Frontend Mentor - Base Apparel coming soon page solution
This is a solution to the [Base Apparel coming soon page challenge on Frontend Mentor](https://www.frontendmentor.io/challenges/base-apparel-coming-soon-page-5d46b47f8db8a7063f9331a0). Frontend Mentor challenges help you improve your coding skills by building realistic projects.
## Table of contents
- [Overview](#overview)
- [The challenge](#the-challenge)
- [Screenshot](#screenshot)
- [Links](#links)
- [My process](#my-process)
- [Built with](#built-with)
- [What I learned](#what-i-learned)
- [Author](#author)
- [Acknowledgments](#acknowledgments)## Overview
### The challenge
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
- Receive an error message when the `form` is submitted if:
- The `input` field is empty
- The email address is not formatted correctly### Screenshot
![](./desktop-base-apparel.png)
### Links
- Solution URL: [Frontend Mentor](https://www.frontendmentor.io/solutions/responsive-landing-page-using-css-flexbox-zi56OadDWP)
- Live Site URL: [Github Pages](https://bccpadge.github.io/base-apparel-coming-soon-page/)## My process
### Built with
### What I learned
I learned `css
object-fit:cover;` stretches the image too much and decided use `css object-fit: fill` instead. I created HTML input placeholder attribute with JavaScript.```css
.showcase img {
width: 100%;
max-height: 30rem;
object-fit: fill;
height: auto;
}
``````js
document.getElementById("email__input").placeholder = "Email Address";
```## Author
## Acknowledgments
[Base Apparel Coming Soon page (custom version)](https://www.frontendmentor.io/solutions/base-apparel-coming-soon-page-custom-version-2iseDwyZc2) - This solution inspired me to implement accessibility within the JavaScript code.