Welcome to the GitHub template repository for the courses (CS3361, CS3365)! This template serves as a starting point for your first assignment of creating and deploying your portfolio. Follow the instructions below to download, customize, and push your work to your own GitHub repository.
The template includes the following structure:
📦create_website
┣ 📂files/ # Add your CV PDF inside this folder
┣ 📂images/ # Add your image inside this folder
┣ projects.html # Update this file to add your own project details
┣ index.html # Update this file for the main page of your portfolio
┣ 📜README.md # Project instructions and information
┗ 📜LICENSE # Licensing information
Clone the repository to your local machine:
git clone https://github.com/MaazAmjad/create_website.gitAlternatively, download it as a ZIP file and extract it.
Make the following changes:
- Replace placeholder information (e.g.,
Your Name,Project Title) with your details. - Add your project code and any required files in the respective folders.
- Log in to your GitHub account.
- Create a new repository (public unless otherwise specified).
- Copy the repository URL for use in the next step.
Run the following commands to upload your project to your new repository:
# Initialize a new Git repository
git init
# Stage all changes
git add .
# Commit your changes
git commit -m "Initial commit"
# Set the main branch
git branch -M main
# Add the remote repository
git remote add origin <your-repo-url>
# Push changes to GitHub
git push -u origin mainOnce you have pushed your work to GitHub, submit the repository link as per the instructions provided in the course.
This project template is licensed under the MIT License.
Celebrate and enjoy your coding experience! 🚀