devfolio is portfolio website template for developers to show there skills, projects and about.
⚡️ Modern UI Design
⚡️ One Page Layout
⚡️ Full Responsive
⚡️ Styled with Custom CSS3
⚡️ Easily Customizable
To view a demo example, click here
To view a live example, click here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
From your command line, first clone devfolio:
# Clone this repository
$ git clone https://github.com/ashukumar2001/devfolio.git
# Go into the repository
$ cd devfolio/
# Remove current origin repository
$ git remote remove originGo to index.html and fill your information, they are 4 sections:
- On
imgtag fill thesrcwith your profile picture must be located inimages/folder. - On
h3.about-me-itemadd your custom name. - On
button.resumeadd your custom button.
<!-- About section --><sectionid="about" class="main-item"><divclass="container" id="about-container"><divid="about-wrapper"><imgsrc="images/my-image.png" alt="" id="myImage" class="about-item"><divid="about-me" class="about-item"><h3class="about-me-item">Hi, I am Your Name.</h3><pclass="about-me-item">I am UNKNOWN developer.</p><pclass="about-me-item">I am passionate about building scalable software, creating effective
solutions, and learning every day to grow professionally in the IT field.</p><buttonclass="resume btn">CUSTOM BUTTON</button></div></div></div></section><!-- About Section end here -->- On
imgtag fill thesrcwith your project image must be located inimages/folder. - On
h3.p-headingadd your Custom Project Name. - On
p.p-descriptionadd you Custom Project Description. - after filling details about your project paste the code into the
<ul class="glide__slides">to add your new project.
<!-- Project Section --><liclass="glide__slide"><divclass="project-wrapper"><imgsrc="images/YOUR-IMAGE.jpg" alt=""><divclass="project-about"><h3class="p-heading">Project Heading</h3><pclass="p-description">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Itaque est nobis quos quae qui quas
asperiores inventore odio iusto praesentium consequuntur magnam, impedit eaque
ecessitatibus, accusantium maxime? Mollitia, a exercitationem.
</p></div></div></li><!-- Project Section End Here -->- On
span.headingadd your custom skills.
<!-- Skills Section --><sectionid="skills" class="main-item"><divclass="container" id="skills-container"><divclass="languages"><spanclass="heading">Front-end</span><iclass="fab fa-js"></i><iclass="fab fa-html5"></i><iclass="fab fa-css3"></i></div><divclass="languages"><spanclass="heading">Back-end</span><iclass="fab fa-node"></i></div><divclass="languages"><spanclass="heading">Tools</span><iclass="fab fa-git"></i></div></div></section><!-- Skills Section end here -->- On
a.contact-buttonfillhrefattribute with your contact details. - On
a.social-itemfillhrefattribute with your social accounts link. - On
<i class="">fillclassattribute with your required icon form Font Awesome. - You can delete or add as many
alinks your want.
<!-- contact section --><sectionid="contact" class="main-item"><divclass="container" id="contact-container"><h2>Would you like to work with me? Awesome!!!</h2><divid="contact-button-container"><ahref="mailto:xyz@gmail.com" class="contact-button btn">Email me</a>
or
<ahref="tel:+0123456789" class="contact-button btn">Call me</a></div><divid="social-container" class="contact-container-item"><ahref="#" class="social-item"><iclass="fab fa-github social-icon"></i></a><ahref="#" class="social-item"><iclass="fab fa-linkedin-in social-icon"></i></a><ahref="#" class="social-item"><iclass="fab fa-instagram social-icon"></i></a></div></div></section><!-- Contact Section end here -->Change the color theme of website.
Go to style/style.css and only change the values of this properties.
:root {
font-size:15px;
font-family:'Montserrat', sans-serif;
--dark-background:rgb(0,0,0);
--dark-text: white;
--light-background:rgb(255,255,255);
--light-text:rgb(0,0,0);
--about-background:linear-gradient(to right,rgb(132,243,255),rgb(5,200,194));
--project-background:linear-gradient(to right,rgb(115,255,176),#55ee71);
--skill-background:rgb(168,217,255);
--contact-background:rgb(255,250,162);
--dark-border:rgb(255,255,255);
--light-border:rgb(0,0,0);
--transition-fast:300ms;
--transistion-slow:600ms;
}- Glider.js - A dependency-free JavaScript ES6 slider and carousel.
- Ashu Kumar - https://github.com/ashukumar2001