A professional, modern website for a college counseling company.
- Responsive Design - Works beautifully on desktop, tablet, and mobile
- Professional Aesthetic - Trustworthy design using Crimson Pro and DM Sans fonts
- Complete Pages:
- Home (landing page with hero, services preview, testimonials)
- About Us (team info, company values)
- Services & Pricing (3 pricing tiers, detailed service descriptions)
- Success Stories (student testimonials)
- Resources (articles and advice)
- Contact (Google Form integration)
- SEO Optimized - Meta tags, semantic HTML
- Smooth Animations - Subtle scroll animations and transitions
- Mobile Menu - Hamburger navigation for mobile devices
index.html- Home pageabout.html- About Us pageservices.html- Services & Pricing pagesuccess-stories.html- Success Stories pageresources.html- Resources & Articles pagecontact.html- Contact page with formstyles.css- Main stylesheetpages.css- Additional styles for inner pagesscript.js- JavaScript for interactivityREADME.md- This file
Before deploying, update these items:
Contact Information (in all HTML files):
- Replace
info@gradkeys.orgwith your email - Replace
(123) 456-7890with your phone number
Google Form Integration (in contact.html):
- Create a Google Form at https://forms.google.com
- Click "Send" → "Embed HTML" → Copy the iframe code
- Replace
YOUR_GOOGLE_FORM_IDin contact.html with your actual form ID
Optional Customizations:
- Update team member information in
about.html - Modify pricing in
services.html - Add real testimonials in
success-stories.html - Link actual article pages in
resources.html
- Create a GitHub account at https://github.com
- Create a new repository named "gradkeys-website"
- Upload all website files to the repository
- Go to Settings → Pages
- Select main branch as source
- Your site will be at
https://yourusername.github.io/gradkeys-website - Point your domain (gradkeys.org) to GitHub Pages:
- In your domain registrar (where you bought gradkeys.org)
- Add these DNS records:
A Record: 185.199.108.153 A Record: 185.199.109.153 A Record: 185.199.110.153 A Record: 185.199.111.153 CNAME: www → yourusername.github.io - Add a CNAME file to your repo with content:
gradkeys.org
- Create account at https://netlify.com
- Drag and drop all website files to Netlify
- Your site will be live at a netlify.app URL
- Add your custom domain (gradkeys.org):
- Go to Domain Settings → Add custom domain
- Follow instructions to update DNS at your domain registrar
- Netlify provides automatic HTTPS
- Purchase hosting from providers like:
- Bluehost, SiteGround, HostGator, GoDaddy
- Upload files via FTP or hosting control panel
- Point your domain to the hosting nameservers
- Install SSL certificate for HTTPS
If you haven't bought gradkeys.org yet:
- Go to domain registrars:
- Namecheap (recommended)
- Google Domains
- GoDaddy
- Search for "gradkeys.org"
- Purchase the domain (usually $10-15/year)
- Follow deployment steps above to point it to your hosting
- Chrome (latest)
- Firefox (latest)
- Safari (latest)
- Edge (latest)
- Mobile browsers (iOS Safari, Chrome Mobile)
The color scheme is defined in CSS variables in styles.css:
:root {
--primary: #1a4d7a; /* Main blue */
--accent: #d4a574; /* Gold accent */
--text-dark: #1a1a1a; /* Main text */
}Currently using:
- Crimson Pro (serif, for headings)
- DM Sans (sans-serif, for body text)
To change fonts, update the Google Fonts link and CSS variables.
- Copy an existing HTML file
- Update the content
- Add links to navigation in all pages
- Update footer links if needed
For technical questions about the website:
- Check browser console for errors (F12)
- Ensure all files are uploaded to the same directory
- Verify file paths are correct (case-sensitive on some servers)
Consider adding:
- Blog section with CMS integration
- Online booking system
- Live chat widget
- Email newsletter signup
- Client portal/login area
- Video testimonials
- Interactive college search tool
Website built with:
- HTML5
- CSS3
- Vanilla JavaScript
- Google Fonts (Crimson Pro, DM Sans)