A modern, responsive academic website for the Kissinger Research Group at the University of Georgia.
- Fully Responsive: Works seamlessly on desktop, tablet, and mobile devices
- Modern Design: Clean, professional academic aesthetic
- Easy to Customize: Simple HTML/CSS/JavaScript structure
- GitHub Pages Ready: Can be deployed directly to GitHub Pages
- Accessible: Semantic HTML and ARIA labels for better accessibility
- Fast Loading: Optimized CSS and JavaScript with smooth animations
modern-site/
├── index.html # Homepage
├── research.html # Research page
├── publications.html # Publications page
├── members.html # Team members page
├── databases.html # Databases page
├── news.html # Lab news page
├── contact.html # Contact page
├── css/
│ └── style.css # Main stylesheet
├── js/
│ └── main.js # JavaScript functionality
└── images/ # Image assets
- Simply open
index.htmlin a web browser - Or use a local server:
# Using Python 3 python -m http.server 8000 # Using Node.js http-server npx http-server
-
Create a new repository on GitHub
-
Push your code:
git init git add . git commit -m "Initial commit" git branch -M main git remote add origin https://github.com/yourusername/your-repo.git git push -u origin main
-
Enable GitHub Pages:
- Go to repository Settings
- Navigate to Pages section
- Select "main" branch as source
- Click Save
-
Your site will be live at:
https://yourusername.github.io/your-repo/
Edit the CSS variables in css/style.css:
:root {
--primary-color: #ba0c2f; /* UGA red */
--secondary-color: #000000; /* Black */
--text-color: #333; /* Dark gray */
--bg-light: #f8f9fa; /* Light background */
}Edit members.html and add member profiles in the appropriate section.
Edit publications.html and add publications to the list.
Edit news.html and add news articles using the existing format.
Place images in the images/ directory and reference them:
<img src="images/your-image.jpg" alt="Description">- Chrome (latest)
- Firefox (latest)
- Safari (latest)
- Edge (latest)
- Mobile browsers
- HTML5
- CSS3 (Grid, Flexbox, CSS Variables)
- Vanilla JavaScript (ES6+)
- Google Fonts (Inter)
© 2026 Kissinger Research Group, University of Georgia
University of Georgia Athens, GA 30602
Built with modern web standards for optimal performance and accessibility.