pranit144 commited on
Commit
ac1f82e
·
verified ·
1 Parent(s): 36e2546

Update contact.html

Browse files
Files changed (1) hide show
  1. contact.html +9 -7
contact.html CHANGED
@@ -5,6 +5,8 @@
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
  <title>Contact - Pranit Chilbule</title>
7
  <link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;500;700&family=Inter:wght@300;400;500;600&display=swap" rel="stylesheet">
 
 
8
  <style>
9
  /* Import existing theme variables */
10
  :root {
@@ -321,13 +323,13 @@
321
  <header>
322
  <nav>
323
  <div class="logo">Pranit Chilbule</div>
324
- <ul class="nav-links">
325
- <li><a href="index.html">Home</a></li>
326
- <li><a href="about.html">About</a></li>
327
- <li><a href="projects.html">Projects</a></li>
328
- <li><a href="achievements.html">Achievements</a></li>
329
- <li><a href="contact.html">Contact</a></li>
330
- </ul>
331
  </nav>
332
  </header>
333
 
 
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
  <title>Contact - Pranit Chilbule</title>
7
  <link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;500;700&family=Inter:wght@300;400;500;600&display=swap" rel="stylesheet">
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css">
9
+
10
  <style>
11
  /* Import existing theme variables */
12
  :root {
 
323
  <header>
324
  <nav>
325
  <div class="logo">Pranit Chilbule</div>
326
+ <ul class="nav-links" id="navLinks">
327
+ <li><a href="index.html"><i class="fas fa-house"></i> Home</a></li>
328
+ <li><a href="about.html"><i class="fas fa-user"></i> About</a></li>
329
+ <li><a href="projects.html"><i class="fas fa-code"></i> Projects</a></li>
330
+ <li><a href="achievements.html"><i class="fas fa-trophy"></i> Achievements</a></li>
331
+ <li><a href="contact.html"><i class="fas fa-envelope"></i> Contact</a></li>
332
+ </ul>
333
  </nav>
334
  </header>
335