DEV Community

Cover image for How to design & develop personal portfolio website
Rahul Jain
Rahul Jain

Posted on

How to design & develop personal portfolio website

Maintaining a personal portfolio becomes important to showcase skills, projects, achievements & favorites, etc. So the authenticity, performance, user experience & user interface plays an important role.

The requirements of a portfolio changes from profile to profile. A developer's portfolio requirement is much different than a designer's portfolio requirement.

In this post, I'll show you the steps that I followed to design & develop my portfolio https://rahuldkjain.github.io

The whole process is divided into 4 parts

  1. Wireframing
  2. Designing
  3. Planning
  4. Coding

Following these processes in sequence will help you to reach your goal in less time.

1. Wireframing
Put down the following things which you will need in your portfolio

  1. Pages
  2. Sections
  3. Features
  4. Buttons
  5. Cards
  6. Forms
  7. Media (Images, GIFs, Videos. etc.)

Take a pen and paper, draw the layouts, designs coming into your mind. Don't be too picky, just roughly draw the layouts without thinking too much.

This will help you to brainstorm the ideas of layout and content of the portfolio. Make 3-4 different wireframes for both mobile and desktop screens.

I used Adobe Xd to understand my thoughts better. The wireframes designed by me are





2. Designing
Once you are done with wireframing, designing comes into the picture.
Before carrying out any task, you need to get some design inspiration from

  1. Behance
  2. Dribbble
  3. Awwwards

See how people are using the elements, color schemes creatively.

The links I explored:

After this, you need to choose designs for your elements like cards, buttons, media, etc.

  1. CSS Tricks
  2. FreeFrontEnd

The links I explored:

Now, its time to select a good color scheme. I would recommend using coolors. Exploring css-tricks article will enhance the understanding of the color.

Explore fonts and pick your perfect fit.

So in short, your task is to

  1. Select the desired wireframe for the portfolio
  2. Select the layouts and positions of elements like buttons, media, etc.
  3. Select a color scheme to maintain uniformity throughout the portfolio.
  4. Select font families

Remember almost half of the internet users are surfing through mobile, so never forget to design both desktop and mobile screens for the project.
The designs I selected are:

3. Planning
Once you are done with selecting the designs and layout, you are ready to plan how you are going to execute the project. Planning plays an important role in showing the path to your goal. It will help you to estimate the progress with time. Every beautiful UI you saw on the internet is not just coding but the planning and designing processes behind it.

Now you need to decide the technology stack for the project. Always ponder things such as requirements, time, and skill to decide the tech stack.

For example if you are thinking of developing a blog gatsby(reactjs), gridsome(vuejs) will be a good option to develop faster.

If you are thinking to develop a portfolio, frontend frameworks such as react or vue will be good option to develop faster.

I was comfortable with Vuejs, as I've done a project using it which is currently serving millions of Indonesians customers. Also, I know the power of Sass over CSS, so I chose Sass.

Make a list of the things(third party vue components) which you will need to make the project better.
In my case I've used:

Always keep an eye on the time available while selecting the tech stack. I have the time because of the coronavirus lockdown, so I decided to develop the portfolio without using third party libraries like vue-bootstrap or vuetify.

4. Coding
Here comes the most exciting process, CODING. It's time to start coding.
Take a pen and paper, write down the proper plan.
The plan must include

  1. The sequence of components to code
  2. Which component will have what functionalities
  3. Code optimization technique
  4. The number of hours/days required to finish each component.

Initialize the repository on version control apps like Github or Gitlab etc.

I know there will be times when you will be stuck on an error for hours. Don't forget that there is no harm in googling it. StackOverflow, CSS-Tricks, Github will become your best friend in the process.
Cherish this relationship and keep developing.

The things where I found myself stuck for hours

  1. Mobile Responsiveness strategy for mobile screens
  2. Importing downloaded font. (Yeah so noob I know!)
  3. Aligning elements using flexbox and grids.
  4. Fixing overflow screens
  5. Deciding which tags(span, div, section, pre) to use. (So gross I know)
  6. Using px or % in CSS

The resources helpful for learning while developing are:

After you are done with coding, you can deploy your portfolio on Github Pages, Netlify, Heroku, etc. for free.

I recommend using Github Pages, as it looks more developer-friendly. The portfolio I developed is https://rahuldkjain.github.io.

GitHub logo rahuldkjain / minimal-portfolio

đź’Ş A clean, minimal, responsive, and customizable portfolio template to showcase skills, experience, achievements, and favorites (movies & TVs).


You can customize it for yourself very easily by editing src/portfolio.js.

Happy Coding!

Top comments (0)