This project is a recreation of the Cursor.com landing page, built using only HTML & CSS with a desktop-first approach.
The goal was to replicate the visual hierarchy, structure & design of the Cursor website without using JavaScript, TailwindCSS, or external frameworks.
cursor-landing-page/
│
├── index.html # Main landing page HTML structure
├── style.css # Styling (layout, typography, colors)
├── README.md # Project documentation
│
└── assets/ # Images and brand resources
Top Navigation Bar: Fixed position, blur effect, logo, links, and CTA. Hero Section: Main headline, description, CTA buttons & product screenshot placeholder. Trusted By / Logos: Row of company names using flexbox. Feature Sections: Three blocks with alternating text/image layout. Testimonials: Quote cards from developers. Final CTA: Large call-to-action at the bottom. Footer: Multi-column links.
- Primary Font: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
- Backgrounds:
- Primary:
#14120b
- Primary:
- Text:
- Primary:
#ededed - Secondary:
#edededc4
- Primary:
- Flexbox: Used exclusively for layout structure.
display: flexused for all columns, alignments & positioning.
- Pure HTML & CSS.
- No JavaScript.
- No TailwindCSS.
- Desktop-only design.
