Skip to content

Latest commit

 

History

History
89 lines (57 loc) · 2.74 KB

ReadMe.md

File metadata and controls

89 lines (57 loc) · 2.74 KB

Frontend Mentor - Bookmark landing page solution

This is a solution to the Bookmark landing page challenge on Frontend Mentor. Frontend Mentor challenges help you improve your coding skills by building realistic projects.

Table of contents

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 newsletter form is submitted if:
    • The input field is empty
    • The email address is not formatted correctly

Screenshot

Screenshot (222) Screenshot (223) Screenshot (225) Screenshot (224) Screenshot (226) Screenshot (227) Screenshot (228)

Links

  • Live Site URL: Bookmark Landing Page - Netlify

Built with

  • Semantic HTML5 markup
  • CSS custom properties
  • Flexbox
  • CSS Grid
  • Mobile-first workflow
  • TailwindCss - Css library

What I learned

While working on the project using TailwindCss, I learnt how to write reusuable Css codes.

.btn {
    @apply shadow-md py-3 px-6 rounded-md transition duration-300;
}

.btn-purple {
    @apply bg-bookmark-purple text-white;
}

.btn-white {
    @apply bg-bookmark-white
}

Continued development

I will be focusing more on how to make the web page more interactive using Javascript.

Author