A clean, responsive personal portfolio website to showcase your academic background, projects, publications, and contact information.
Two launcher scripts are included for easy startup:
- On macOS: Double-click the
run_website.commandfile in Finder - On any system: Run
./app.shin your terminal
These scripts will automatically start a local web server, and you can view your website at http://localhost:8000
You can also run the website manually:
- Open your file explorer/finder
- Navigate to the website folder
- Double-click on the
index.htmlfile to open it directly in a browser
OR
Use Python to start a local server:
python3 -m http.server 8000- Responsive design that works on all devices
- Clean and modern UI
- Sections for:
- About Me
- Education
- Projects
- Publications
- Contact
Edit the index.html file to replace placeholder content with your information:
- Change "Your Name" to your actual name
- Update "Your Title/Position" with your current role
- Replace the placeholder text in the About section with your bio
- Add your actual education history, projects, and publications
- Update contact information with your email and location
- Add your profile picture to the project directory
- Update the
<img src="https://via.placeholder.com/300x300.png?text=Your+Photo" alt="Your Name">tag in the About section with your image file name:<img src="your-photo-filename.jpg" alt="Your Name">
Update the social media links in the About section with your actual profiles:
<div class="social-links">
<a href="https://github.com/YOUR-USERNAME" target="_blank" title="GitHub"><i class="fab fa-github"></i></a>
<a href="https://linkedin.com/in/YOUR-USERNAME" target="_blank" title="LinkedIn"><i class="fab fa-linkedin"></i></a>
<a href="https://twitter.com/YOUR-USERNAME" target="_blank" title="Twitter"><i class="fab fa-twitter"></i></a>
<!-- Add more social media links as needed -->
</div>The template uses Font Awesome for icons. You need to replace the placeholder kit URL:
<script src="https://kit.fontawesome.com/your-fontawesome-kit.js" crossorigin="anonymous"></script>Get your own Font Awesome kit URL by:
- Creating an account at Font Awesome
- Generating a kit
- Replacing the placeholder URL with your kit URL
The color scheme can be customized by editing the CSS variables in the styles.css file:
:root {
--primary: #0070f3; /* Change this to your preferred primary color */
--dark: #333;
--light: #f5f5f5;
--gray: #666;
--border: #ddd;
--container-width: 1200px;
}There are several free options for hosting your personal website:
- GitHub Pages - Free hosting directly from your GitHub repository
- Netlify - Free tier with easy deployment from Git
- Vercel - Free for personal projects with simple deployment
For GitHub Pages setup instructions, see the GITHUB_SETUP.md file included in this repository.
Feel free to use this template for your personal website.
Icons by Font Awesome