Skip to content

Commit 390d588

Browse files
removes fontawesome
1 parent 85ca0b5 commit 390d588

File tree

7 files changed

+15
-12
lines changed

7 files changed

+15
-12
lines changed

img/footer/bars.svg

Lines changed: 1 addition & 0 deletions
Loading

img/footer/facebook.svg

Lines changed: 1 addition & 1 deletion
Loading

img/footer/github.svg

Lines changed: 1 addition & 1 deletion
Loading

img/footer/instagram.svg

Lines changed: 1 addition & 1 deletion
Loading

img/footer/linkedin.svg

Lines changed: 1 addition & 0 deletions
Loading

index.html

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,8 @@
4444
<meta property="og:site_name" content="programmergaurav" />
4545
<!-- Open Graph Protocol Ends -->
4646
<link rel="icon" href="img/icon.png" />
47-
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" />
4847
<link rel="stylesheet" href="css/grid.min.css" />
49-
<link rel="stylesheet" href="css/style.css" />
48+
<link rel="stylesheet" href="css/style.min.css" />
5049
</head>
5150

5251
<body>
@@ -60,7 +59,7 @@
6059
<h1>Programmer Gaurav</h1>
6160
</a>
6261
<div class="toggle">
63-
<i class="fas fa-bars"></i>
62+
<img src="/img/footer/bars.svg" alt="">
6463
</div>
6564
<div class="navbar-nav">
6665
<a href="#home" class="nav-item">Home</a>
@@ -408,7 +407,7 @@ <h3>Let's Chat</h3>
408407
<input type="text" class="form-control" id="name" name="name" required />
409408
</div>
410409
<div class="textarea">
411-
<label for="">Message</label>
410+
<label for="messege">Message</label>
412411
<textarea
413412
type="text"
414413
class="form-control"
@@ -429,12 +428,12 @@ <h3>Let's Chat</h3>
429428
<div class="container-fluid footer">
430429
<div class="row">
431430
<div class="col-12">
432-
<img alt="programmergaurav" src="img/namewhite.webp" />
431+
<img alt="programmergaurav" src="img/namewhite.webp" class="footer-title"/>
433432
</div>
434433
<div class="col-12">
435434
<div class="soc">
436435
<a title="Github profile Link" target="_blank" href="https://github.com/programmergaurav">
437-
<i class="fab fa-github"></i>
436+
<img src="/img/footer/github.svg" alt="" class="github">
438437
</a>
439438
</div>
440439
<div class="soc">
@@ -443,7 +442,7 @@ <h3>Let's Chat</h3>
443442
target="_blank"
444443
href="https://www.facebook.com/profile.php?id=100026746380141"
445444
>
446-
<i class="fab fa-facebook"></i>
445+
<img src="/img/footer/facebook.svg" alt="" class="facebook">
447446
</a>
448447
</div>
449448
<div class="soc">
@@ -452,7 +451,7 @@ <h3>Let's Chat</h3>
452451
target="_blank"
453452
href="https://www.instagram.com/programmergaurav/"
454453
>
455-
<i class="fab fa-instagram"></i>
454+
<img src="/img/footer/instagram.svg" alt="" class="instagram">
456455
</a>
457456
</div>
458457
<div class="soc">
@@ -461,7 +460,7 @@ <h3>Let's Chat</h3>
461460
target="_blank"
462461
href="https://www.linkedin.com/in/programmergaurav/"
463462
>
464-
<i class="fab fa-linkedin"></i>
463+
<img src="/img/footer/linkedin.svg" alt="" class="linkedin">
465464
</a>
466465
</div>
467466
</div>

js/script.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,11 +81,13 @@ window.addEventListener('scroll', () => {
8181
navbar.style.backgroundColor = "white";
8282
navbar.style.color = "black";
8383
navbarNav.classList.add('navBar');
84+
toggle.style.filter ="invert(1)"
8485
} else if (window.pageYOffset == 0) {
8586
navbar.style.height = "77px";
8687
navbar.style.lineHeight = "77px";
8788
navbar.style.backgroundColor = "black";
8889
navbar.style.color = "white";
8990
navbarNav.classList.remove('navBar');
91+
toggle.style.filter ="invert(0)"
9092
}
9193
});

0 commit comments

Comments
 (0)