In this assignment, you will create a static personal website / portfolio page using HTML and CSS using the techniques you have learned so far in class. You will also have the chance to deploy your website so that it is live and accessible on the internet - meaning you can share it with others.
This assignment, as well as all others, assumes basic proficiency with using Git and GitHub. This assignment will be completed and submited via a GitHub repository.
Git is used extensively throughout the UNC Computer Science curriculum and should have been covered in recent iterations of COMP 211: Systems Fundamentals and COMP 301: Foundations of Programming.
If you are not familiar with Git - no worries! I recommend checking out the Git related lectures and materials taught in last semester's offering of COMP 290: Essential Tools for Computer Science. All slides and lecture videos are posted there. If you have any questions, please see the TAs in office hours!
You should be familiar with:
We also assume that you are up-to-date on all readings and class materials.
Make sure that you have Visual Studio Code installed on your machine. This will be our primary IDE for this course.
In this assignment, you will create a personal website that showcases yourself, your skills, courses you have taken at UNC, and any projects you have worked on! You can think of this almost like a digital resume. Personal websites are a great way to showcase the work you have done and can be a fun way to express yourself creatively. It can also be a launching pad to write blog posts or other content if you wish.
Requirement | Points ( /100) | |
---|---|---|
Content | 40 | |
Header section that includes:
| 10 | |
About section that includes a longer bio about yourself. Include your major and interests (academic and even non-academic!). | 10 | |
Classes section with some relevant COMP (or other) courses you have taken at UNC. Feel free to include COMP 426! | 10 | |
Skills section with a list of programming languages, frameworks, tools, etc. that you are familiar with. | 10 | |
HTML Requirements | 20 | |
Your website's HTML includes metatada including the website's | 10 | |
Your website connects to a | 10 | |
Styling Requirements | 20 | |
You utilize a flexbox at least once in your CSS. | 5 | |
Your website is visually appealing and puts in effort including styling with CSS. We recommend trying to have fun with designing here! Create something you would want to show off.
We will have an entire module on design later in the course, where we will dive deeper into colors and typography. For now, feel free to experiment - and ask questions! GradingThe COMP 426 staff will assign a rating for each project. The final grade will be determined by the rough average of the ratings, rounded up.
Note: This approach is taken to try and reduce the subjectivity of these styling points from one grader to another. | 10 | |
If you use external resources to help you with CSS and styling your website, please source it in a comment in your CSS file! | 5 | |
Deployment | 20 | |
Your website is deployed using Vercel and is accessible at a URL with the format: | 20 |
Extra Credit | Points |
---|---|
The team will recognize an website exceptionally good (in terms of design and content) with an extra credit of 5 points! | 5 |
To get started on this assignment, please complete the following steps:
git clone <repository-url>
index.html
in the root directory of your repository. This will be the main page of your website. You will want to follow the same standard template used in class, which might look something like the following:<!DOCTYPE html>
<html>
<head></head>
<body></body>
</html>
index.html
in your file explorer to open the page in your browser!The final step of this project is to deploy it to the web! To do so, we are going to use a platform called Vercel. Vercel is an industry-grade deployment tool which can host websites on their servers so that others can access it live on the internet. Vercel is a great system and is used in industry and by many indie developers and teams alike. Vercel is also the company that manages tools we will use later in this class.
Deploying via Vercel is simple and only requires a few steps. Please follow this video guide to deploy your website to Vercel. The website will also introduce deployment as a concept, expanding on the client-server diagram we have used in class.
Please come into office hours if you encounter any issues!
You will submit your final website to Gradescope. Before submitting, make sure that:
https://a01-personal-porfolio-yourname.vercel.app
.