Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 1014 Bytes

readme.md

File metadata and controls

19 lines (15 loc) · 1014 Bytes

Module 7 - UI/UX Design and Styling

Setup

  1. Initialize Project
  2. Set Up Express Server
  3. Serve Static Files
  4. Handle 404 Errors
  5. Install and Set Up Tailwind CSS
  6. Style Your Website

Sections

7.01 - Create a new Node.js project using npm init --y and install Express with npm install express. 7.02 - Create an app.js file, create an instance of Express, and set the app to listen on port 3000 by adding the necessary code to app.js. 7.03 - Create a public folder in the root directory, use express.static() to serve files from this folder, and include the path module to concatenate __dirname with /public. 7.04 - Update app.js to serve a custom 404 message for non-existing pages. 7.05 - Install and Set Up Tailwind CSS. 7.06 - Style your website using Tailwind CSS according to the given Figma Prototype.