Skip to content

pawantech12/portfolio-website

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GitHub repo size GitHub stars GitHub forks


Responsive Portfolio Website

Responsive Portfolio Website using HTML, CSS, and JavaScript.

➥ Live Demo


Desktop Preview

portfolio.website.mp4

Prerequisites

Before you begin, ensure you have met the following requirements:

  • You Should Know Basic or Intermediate of HTML ,CSS and JavaScript
  • This website is developed by bootstrap 5 copy below code :
<!--- Bootstrap 5 css CDN Link --->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous" />

<!-- bootstrap javascript cdn link  -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script>
  • JQuery CDN LInk :
<!-- JavaScript jQuery CDN -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.4/jquery.min.js"></script>
  • Bootstrap Icon :
<!-- bootstrap icon cdn link  -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.4/font/bootstrap-icons.css"/>

AOS Animation Library Installation

Basic

Add Styles in <head> :

<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />

Add script right before closing </body> tag, and initialize AOS :

<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
  AOS.init();
</script>

Using package managers

Install aos package:

  • yarn add aos@next
  • or npm install --save aos@next

Import script, styles and initialize AOS:

import AOS from 'aos';
import 'aos/dist/aos.css'; // You can also use <link> for styles
// ..
AOS.init();

In order to make it work you'll have to make sure your build process has configured styles loader, and bundles it all correctly. If you're using Parcel however, it will work out of the box as provided.

How to use it ?

  1. Initialize AOS :
// initializing AOS library
AOS.init({
  duration: 1000,
  offset: 50,
});
  1. Set animation using data-aos attribute:
<div data-aos="fade-in"></div>

Project Contain

  • Sticky Responsive Navigation Bar
  • Hero Section
  • Expertise section
  • Skill Section with Progress Animation
  • Working Portfolio Section
  • Testimonial Section
  • Blog Section
  • Contact Section
  • Footer Section
  • Fully Responsive for all devices

Font Family

  • I have Used Google Fonts - Josefin Sans
<!-- google font link -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;500;600;700&display=swap" rel="stylesheet"/>

Run Locally

To run Personal Portfolio locally, run this command on your git bash:

Linux and macOS:

sudo git clone https://github.com/pawantech12/portfolio-website.git

Windows:

git clone https://github.com/pawantech12/portfolio-website.git

Contact

If you want to contact with me you can reach me at Instagram.

License

This project is Free To Use and does not contains any license.