A modern, responsive static website for Qvest Consulting, a Pennsylvania-based firm specializing in helping recent graduates and researchers gain experience with industry-grade ML & AI projects.
- Responsive design that works on all devices
- Modern and clean UI with animations
- Interactive components
- Contact form
- Testimonial slider
- Accessible navigation
- HTML5
- CSS3 (with CSS variables and Flexbox/Grid)
- JavaScript (Vanilla)
- Font Awesome icons
- Google Fonts
qvest/
│
├── index.html # Main HTML file
├── css/
│ └── styles.css # Stylesheet
├── js/
│ └── script.js # JavaScript functionality
├── images/ # Directory for images (to be added)
└── README.md # This file
- Push this repository to GitHub
- Go to repository settings
- Navigate to "Pages" section
- Select "main" branch as the source
- Click "Save"
- Your site will be published at
https://[username].github.io/qvest/
- Replace the placeholder text in
index.htmlwith your actual content - Add your own images to the
images/directory and update the image paths in HTML - Update contact information and social media links
The color scheme can be easily modified by updating the CSS variables in the :root section of the CSS file:
:root {
--primary-color: #6366f1;
--primary-light: #818cf8;
--primary-dark: #4f46e5;
/* other variables */
}To add a new section, follow the existing pattern in the HTML file:
<section id="new-section" class="new-section">
<div class="container">
<div class="section-header">
<h2>Section <span class="highlight">Title</span></h2>
<p>Section description</p>
</div>
<!-- Section content here -->
</div>
</section>Then add corresponding styles in the CSS file.
This project is available for use by Qvest Consulting.
- Font Awesome for icons
- Google Fonts for typography