• Stars
    star
    331
  • Rank 124,160 (Top 3 %)
  • Language
    HTML
  • License
    MIT License
  • Created about 7 years ago
  • Updated 6 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A Web Developer Portfolio Template

Open Source, Fully customizable Web Developer Portfolio Template

Built with HTML, Flexbox (and soon to be a bit of JS)

To view a live demo, click here

This repo is an easily customizable personal portfolio template. Feel free to use it as-is or customize it as much as you want. I wanted to build a very simple template without any unnecessary bloat.


There are 8 customizable sections:

Jumbotron - Edit the h1 and p in the jumbotron-text div

<div class="jumbotron-text">
  <h1>Brandon Morelli</h1>
  <p>Full-Stack Web Developer in Boston, Ma.</p>
</div>

About - Edit the h2 and p, or add more, in the main-content div

<div class="main-content">
  <div class="content-header">
    <a class="anchor" name="about"></a>
    <h2>About</h2>
  </div>
  <div class="content-body">
    <p>text here</p>
    <p>text here</p>
  </div>
</div>

Experience - Experiences are organized in content-body div. There is an h4 and a p that you can edit.

          <div class="content-body">
            <div class="card">
              <div class="card-header">
                <h4>Company <span class="job-title">Job Title</span></h4>
              </div>
              <div class="card-content">
                <p>Paragraph text</p>
              </div>
            </div>

Education - Stored in a card div. Edit the h4 and p tags

            <div class="card">
              <div class="card-header">
                <h4>School <span class="job-title">Dates Attended</span></h4>
              </div>
              <div class="card-content">
                <p>Paragraph Text</p>
              </div>
            </div>

Project - Projects are stored in project-card divs. Edit the image, h4, and p

            <div class="project-card">
              <div class="project-image">
                <img src="http://placehold.it/250x350">
              </div>
              <div class="project-content">
                <h4>Project Name</h4>
                <p>Paragraph text</p>
                <a href="#">Link Text</a>
              </div>
            </div>

Skills - Simply list items. Add or remove li to add/remove skills.

            <ul class="ul-skills">
              <li class="li-skills">Javascript</li>
            </ul>

Contact - Simply cahnge the address to include your email address

<form method="POST" action="https://formspree.io/[email protected]">

Footer - content-body div with an editable p

          <div class="content-body">
            <p>Copyright YOUR NAME 2017</p>
          </div>

To do
  • Make responsive
  • Smooth Scrolling
  • Other effects?

Inspired by this template, I wanted to build a similiar template, but using Flexbox instead of bootstrap and jQuery.

More Repositories

1

Become-A-Full-Stack-Web-Developer

Free resources for learning Full Stack Web Development
17,024
star
2

interactive-bitcoin-price-chart

Interactive Bitcoin Price Chart - built with React
JavaScript
168
star
3

simple-nodejs-weather-app

Weather Website using Node.js, Express, and OpenWeatherMap's API
CSS
145
star
4

JavaScript-HeatMap-Creator

Create HeatMaps with JavaScript and Your Google Location History
HTML
133
star
5

Twitter-Favorite-Bot

Node.js Twitter Favorite Bot
JavaScript
124
star
6

React-Weather-App

A React Web App that utilizes the OpenWeatherMap API to return current and 5 day forecasted weather for a given location.
JavaScript
68
star
7

Simple-Android-Uber-Clone

A simple Uber App Clone.
Java
48
star
8

react-svg-line-chart

react & svg line chart data visualization
JavaScript
16
star
9

Twitter-Follow-Bot

Simple node.js Twitter bot that follows users based on your inputs
JavaScript
14
star
10

node-async-weather

Node Weather Application - Returns the current weather and/or 5 day forecast in the cmd prompt
JavaScript
12
star
11

flexbox-card-tutorial

Minimalist Flexbox Card Tutorial
HTML
8
star
12

learn_coding

List of resources (mostly free) to learn coding
8
star
13

Portland-Trimet-Live-Map

Real Time Portland Trimet Bus and Rail Map
JavaScript
5
star
14

node-password-manager

Password Manager built on NodeJS
JavaScript
3
star
15

CSS-Clock

A simple clock built with CSS + JS
CSS
2
star
16

react-svg-meter

simple, elegant, meter for react.js
JavaScript
2
star
17

React-Native-Weather-Forecast-App

Simple react native weather forecast app built at Mirador Hack night.
JavaScript
1
star
18

Android_Notes_App

App for creating and saving notes.
Java
1
star
19

playground-uqtCdBst

Tech.io playground
1
star
20

Frogger-Arcade-Game

Simple and classic arcade game - made to practice object oriented design techniques
JavaScript
1
star
21

ReactTodo

'To do list' application built with React, Node, and utilizing Firebase for realtime updates across devices.
JavaScript
1
star
22

Android-App-Guess-The-Number

Simple Android App where you try to guess a random number
Java
1
star
23

mocha-nodejs-testing-tutorial

A tutorial for testing Node.js with Mocha
JavaScript
1
star
24

NS_PHP_Templates

Repository for N&S custom PHP templates
PHP
1
star
25

Instagram_Clone_Android_App

Simple Android Instagram Clone
Java
1
star
26

Tic-Tac-Toe

An un-beatable Tic-Tac-Toe bot
JavaScript
1
star
27

javascript-drums

Play the drums with your fingers
HTML
1
star