A professional tech profile website showcasing my embedded systems projects, skills, and experience.
Visit: https://aryahp.github.io
- Home Page: Introduction with name highlight and tech profile overview
- Projects Page: Showcase of embedded systems and hardware projects
- Resume Page: Detailed education, experience, and skills
- Responsive Design: Works on desktop, tablet, and mobile
- Dark Theme: Modern dark color scheme optimized for readability
- Fast & Lightweight: Minimal dependencies, pure HTML/CSS/JS
- HTML5
- CSS3 (Custom variables, Grid, Flexbox)
- Vanilla JavaScript
- GitHub Pages for hosting
AryahP.github.io/
├── index.html # Home page
├── projects.html # Projects showcase
├── resume.html # Resume/CV page
├── README.md # This file
└── assets/
└── css/
└── style.css # Main stylesheet
-
Create a GitHub repository named
AryahP.github.io(already done!) -
Push your code to GitHub:
git init git add . git commit -m "Initial commit - tech profile website" git branch -M main git remote add origin https://github.com/AryahP/AryahP.github.io.git git push -u origin main
-
Enable GitHub Pages:
- Go to your repository on GitHub
- Click on "Settings" > "Pages"
- Under "Source", select "Deploy from a branch"
- Select branch:
mainand folder:/ (root) - Click "Save"
-
Wait a few minutes and your site will be live at
https://aryahp.github.io
To update your website after making changes:
git add .
git commit -m "Description of your changes"
git pushGitHub Pages will automatically rebuild and deploy your site within a few minutes.
-
Edit contact links in all HTML files:
- GitHub: Update
href="https://github.com/AryahP" - LinkedIn: Update
href="https://www.linkedin.com/in/aryah-paliwal/" - Email: Update
mailto:ap9029@princeton.edu
- GitHub: Update
-
Customize content:
- Edit
index.htmlfor home page content - Edit
projects.htmlto add/update projects - Edit
resume.htmlto update experience and skills
- Edit
-
Modify colors in
assets/css/style.css::root { --bg: #0b0d10; /* Background color */ --card: #12161c; /* Card background */ --text: #e9eef5; /* Text color */ --muted: #a8b3c2; /* Muted text */ --accent: #7dd3fc; /* Accent color */ }
Edit projects.html and add a new project card:
<div class="project-card">
<h3>🎯 Your Project Title</h3>
<p class="meta">Technology Stack</p>
<p>
Project description here...
</p>
<div class="links-row">
<a href="your-github-link" target="_blank">View Code →</a>
</div>
</div>To test your website locally before deploying:
- Simply open
index.htmlin your web browser - Or use a local server:
# Python 3 python -m http.server 8000 # Then visit http://localhost:8000
This project is open source and available for personal use.
- Email: ap9029@princeton.edu
- LinkedIn: linkedin.com/in/aryah-paliwal
- GitHub: github.com/AryahP
Built with ❤️ by Arya Paliwal