Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
lakhdeepjawandha authored Sep 6, 2024
1 parent 82875ec commit dcfaabf
Showing 1 changed file with 36 additions and 35 deletions.
71 changes: 36 additions & 35 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,75 +12,77 @@
line-height: 1.6;
color: #333;
scroll-behavior: smooth;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
background-color: #f4f6f9;
}
header {
background-color: #fff;
background: linear-gradient(135deg, #3498db, #2c3e50);
color: #fff;
text-align: center;
padding: 100px 0;
padding: 100px 20px;
position: relative;
}
.profile-img {
width: 200px;
height: 200px;
border-radius: 50%;
margin-bottom: 20px;
border: 5px solid #fff;
box-shadow: 0 0 20px rgba(0,0,0,0.1);
overflow: hidden;
}
h1 {
font-size: 2.5em;
font-size: 3em;
margin-bottom: 10px;
}
.job-title {
font-size: 1.2em;
color: #666;
font-size: 1.3em;
margin-bottom: 30px;
font-weight: 300;
}
.menu-icon {
position: fixed;
top: 20px;
left: 20px;
font-size: 24px;
cursor: pointer;
color: #fff;
z-index: 1000;
}
.portfolio-section {
text-align: center;
padding: 50px 0;
background-color: #f9f9f9;
padding: 50px 20px;
background: #fff;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
margin-bottom: 20px;
}
.portfolio-heading {
font-size: 2em;
font-size: 2.5em;
margin-bottom: 20px;
color: #3498db;
}
.down-arrow {
font-size: 2em;
color: #666;
color: #3498db;
}
.section {
padding: 50px 0;
padding: 60px 20px;
background: #fff;
margin-bottom: 20px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
border-radius: 8px;
}
.section h2 {
text-align: center;
margin-bottom: 30px;
margin-bottom: 20px;
font-size: 2.2em;
color: #2c3e50;
}
.skills {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 10px;
margin-top: 20px;
}
.skill {
background-color: #e9e9e9;
color: #333;
background-color: #3498db;
color: #fff;
padding: 10px 20px;
border-radius: 20px;
font-size: 0.9em;
font-weight: 500;
}
.project {
background-color: #fff;
Expand All @@ -101,6 +103,7 @@
margin-top: 10px;
color: #3498db;
text-decoration: none;
font-weight: 500;
}
.project a:hover {
text-decoration: underline;
Expand All @@ -109,21 +112,20 @@
display: flex;
justify-content: center;
gap: 20px;
margin-top: 20px;
}
.contact a {
color: #333;
color: #2c3e50;
text-decoration: none;
font-weight: 500;
}
.contact a:hover {
text-decoration: underline;
}
@media (max-width: 768px) {
.container {
padding: 10px;
}
.profile-img {
width: 150px;
height: 150px;
.skills {
flex-direction: column;
align-items: center;
}
}
</style>
Expand All @@ -132,13 +134,12 @@
<div class="menu-icon"></div>

<header>
<img src="https://via.placeholder.com/200" alt="Lakhdeep Singh Jawandha" class="profile-img">
<h1>Lakhdeep Singh Jawandha</h1>
<p class="job-title">Senior iOS Software Engineer</p>
</header>

<div class="portfolio-section">
<h2 class="portfolio-heading">portfolio</h2>
<h2 class="portfolio-heading">Portfolio</h2>
<div class="down-arrow"></div>
</div>

Expand Down

0 comments on commit dcfaabf

Please sign in to comment.