<!--
Hello Camper!
Please read the README below in the JS Editor before beginning. Feel free to delete this message once you have read it. Good luck and Happy Coding!
- The freeCodeCamp Team
-->
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.8.2/css/all.css"
integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay"
crossorigin="anonymous"
/>
<link
href="https://fonts.googleapis.com/css?family=Poppins:200i,300,400&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css?family=Raleway:700&display=swap"
rel="stylesheet"
/>
<nav id="navbar" class="nav">
<a href="#welcome-section" class="Title"><img src="https://github.com/TechnicalAmanjeet/Freecodecamp-Responsive-Webdesign-Projects/blob/master/5.Personal_portfolio/images/logo.jpg?raw=true" alt="logo"></a>
<ul>
<li class="Active"><a href="#welcome-section">About</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#work">Work</a></li>
<li><a href="#Contact">Contact</a></li>
</ul>
</nav>
<!-- welcome section starts from here -->
<secition id="welcome-section">
<h1>Hay I am <span>Amanjeet kumar</span></h1>
<p>a web developer</p>
<label class="Link">
<a href="https://expy.bio/TechnicalAmanjeet" id="Contact_me">Visit</a>
<a href="https://github.com/TechnicalAmanjeet/Freecodecamp-Responsive-Webdesign-Projects/blob/master/5.Personal_portfolio/images/Amanjeet's%20Resume.pdf">Download CV</a>
</label>
</secition>
<!-- welcome section ends here -->
<!-- projects section starts from here -->
<section id="projects">
<h1>These Are some of my Projects</h1>
<div class="Project">
<section class="project-tile">
<!-- add multiple project here -->
<img src="https://github.com/TechnicalAmanjeet/Freecodecamp-Responsive-Webdesign-Projects/blob/master/5.Personal_portfolio/images/amanjeetprofile.jpg?raw=true">
<p><a href="#"><span>< </span> Tribute page <span> /></span></a></p>
</section>
<section class="project-tile">
<!-- add multiple project here -->
<img src="https://github.com/TechnicalAmanjeet/Freecodecamp-Responsive-Webdesign-Projects/blob/master/5.Personal_portfolio/images/amanjeetprofile.jpg?raw=true" alt="projects">
<p><a href="#"><span>< </span> Product Landing Page <span> /></span></a></p>
</section>
<section class="project-tile">
<!-- add multiple project here -->
<img src="https://github.com/TechnicalAmanjeet/Freecodecamp-Responsive-Webdesign-Projects/blob/master/5.Personal_portfolio/images/amanjeetprofile.jpg?raw=true" alt="projects">
<p><a href="#"><span>< </span> Technical Documentation <span> /></span></a></p>
</section>
</div>
<!-- add link to github account -->
<a href="https://github.com/TechnicalAmanjeet/" class="Show_all" target="blank">Show all <span>></span></a>
</section>
<!-- work section starts from here -->
<section id="work">
<h1>Let's work together</h1>
<p>How do you take your coffee?</p>
<ul>
<li><a href="https://twitter.com/TechAmanjeet"><i class="fab fa-twitter"></i></a></li>
<li><a href="https://www.linkedin.com/in/technicalamanjeet/"><i class="fab fa-linkedin"></i></a></li>
<li><a href="https://github.com/TechnicalAmanjeet"><i class="fab fa-github"></i></a></li>
<li><a href="https://www.youtube.com/channel/UCf4cBertAY5l89lQMPj-iEg/videos"><i class="fab fa-youtube"></i></a></li>
<li><a href="https://codepen.io/TechnicalAmanjeet"><i class="fab fa-codepen"></i></a></li>
<a
id="profile-link"
href="https://github.com/freecodecamp"
target="_blank"
class="btn contact-details"
><i class="fab fa-github"></i></a
>
</ul>
</section>
<section id="Contact">
<p>**This is just a fake portfolio. All the projects and contact details given are not real.</p>
<p>© Created for freeCodeCamp </p>
</section>
*{
margin: 0;
padding: 0;
list-style: none;
text-decoration: none;
color: whitesmoke;
font-family: Roboto,'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
transition: all 0.5s ease;
}
body{
/* background-color:
; */
background: linear-gradient(0deg,rgba(0,0,0,0.8),rgba(0,0,0,0.8));
width: 100vw;
}
/* ******** custom coding of css starts from here ******** */
/* nav section starts from here */
nav{
height: 70px;
background-color: rgb(95, 86, 86);
display: flex;
align-items: center;
justify-content: space-around;
position: sticky;
top: 0;
}
nav img{
width: 50px;
border-radius: 50%;
border: 2px solid rgb(53, 48, 48);
}
nav ul{
display: flex;
width: 300px;
justify-content: space-between;
/* background-color: blue; */
}
nav ul li{
padding: 7px 12px;
border-radius: 4px;
font-size: 16px;
font-weight: bolder;
}
nav ul li:hover , nav ul li.Active{
background-color: rgb(133, 89, 89);
}
nav ul li a:hover{
color: orangered;
}
/* nav section done from here */
/* main section starts from here */
#welcome-section{
width: 100%;
height: 88vh;
/* background-color: blue; */
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#welcome-section h1{
font-size: 6vw;
word-spacing: 1vw;
}
#welcome-section h1 span{
color: orangered;
font-weight: bolder;
font-size: 6.3vw;
}
#welcome-section p{
margin: 15px 0 35px 0;
word-spacing: 2vw;
font-weight: bolder;
font-size: 4vw;
}
#welcome-section .Link a{
font-size: 25px;
background-color: transparent;
color: blue;
margin: 0 10px 0 0;
padding: 10px 20px;
/* border-radius: ; */
color: orangered;
/* font-size: 20px; */
font-weight: bolder;
border: 1px solid red;
}
#welcome-section .Link a:hover{
background-color: orangered;
color: #FFF;
/* border: 1px solid transparent; */
}
/* main section ends from here */
/* project section starts from here */
#projects{
/* height: 100vh; */
width: 100vw;
background-color: #45567D;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
}
#projects h1{
/* margin:0 0 100px 0; */
margin: 80px 0 40px 0;
padding:0 10px 10px 10px;
text-align: center;
/* width: 600px; */
font-size: 40px;
font-weight: bolder;
border-bottom: 4px solid rgb(78, 53, 53);
}
#projects .Project{
display: flex;
justify-content: space-around;
/* max-width: 1000px; */
/* max-width: 700px; */
width: 96%;
flex-wrap: wrap;
}
#projects .project-tile span{
display: none;
}
#projects .project-tile:hover span{
display: inline-block;
transition: all 2s ease;
}
#projects .Project .project-tile{
background-color: #303841;
height: 320px;
width: 240px;
border-bottom-right-radius: 10px;
margin-bottom: 20px;
text-align: center;
}
#projects .Project .project-tile img{
width: 240px;
border-top-left-radius: 10px;
}
#projects .Project .project-tile p{
margin-top: 15px;
font-weight: bolder;
}
#projects a.Show_all {
display: inline-block;
padding: 10px 20px;
margin: 20px 0 30px 0;
background-color: #303841;
}
#projects a.Show_all:hover span{
transform: scaleX(2);
transition: all 1s ease ;
}
/* project section ends from here */
/* work section starts from here */
#work{
height: 450px;
width: 100%;
background-color: #303841;
display: flex;
flex-direction: column;
align-items: center;
justify-content: end;
border-bottom: 5px solid #BE3144;
}
#work h1{
font-size: 50px;
margin-bottom: 20px;
}
#work p{
font-size: 20px;
margin-bottom: 20px;
}
#work ul{
margin: 30px auto 40px auto;
/* width: 90%; */
display: flex;
flex-wrap: wrap;
align-items: center;
text-align: center;
}
#work ul li {
margin-right: 30px;
}
#work ul .fab{
font-size: 50px;
color: rgb(255, 255, 255);
}
#Contact{
width: 100%;
background-color: #303841;
height: 150px;
display: flex;
align-items: center;
justify-content: space-around;
}
#Contact p{
margin: 10px 0;
}
// !! IMPORTANT README:
// You may add additional external JS and CSS as needed to complete the project, however the current external resource MUST remain in place for the tests to work. BABEL must also be left in place.
/***********
INSTRUCTIONS:
- Select the project you would
like to complete from the dropdown
menu.
- Click the "RUN TESTS" button to
run the tests against the blank
pen.
- Click the "TESTS" button to see
the individual test cases.
(should all be failing at first)
- Start coding! As you fulfill each
test case, you will see them go
from red to green.
- As you start to build out your
project, when tests are failing,
you should get helpful errors
along the way!
************/
// PLEASE NOTE: Adding global style rules using the * selector, or by adding rules to body {..} or html {..}, or to all elements within body or html, i.e. h1 {..}, has the potential to pollute the test suite's CSS. Try adding: * { color: red }, for a quick example!
// Once you have read the above messages, you can delete all comments.
View Compiled
This Pen doesn't use any external CSS resources.