-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added icons in the Navbar links and contact us page
- Loading branch information
1 parent
3bce350
commit 08dd928
Showing
1 changed file
with
18 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,7 @@ | |
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous"> | ||
<link rel="stylesheet" href="./style.css"> | ||
<link rel="icon" type="image/png" href="./assets/favicon.png"> | ||
<script src="https://cdn.lordicon.com/lordicon.js"></script> | ||
|
||
<style> | ||
@keyframes float { | ||
|
@@ -113,17 +114,27 @@ | |
<div class="collapse navbar-collapse pe-5" id="navbarSupportedContent"> | ||
<ul class="navbar-nav ms-auto mb-2 mb-lg-0"> | ||
<li class="nav-item"> | ||
<a class="nav-link text-light decorate-text" href="#">Home</a> | ||
<a class="nav-link text-light decorate-text" href="#"><lord-icon | ||
src="https://cdn.lordicon.com/wmwqvixz.json" | ||
trigger="hover" | ||
colors="primary:#ffffff" | ||
style="width:20px;height:20px"> | ||
</lord-icon> Home</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link text-light decorate-text" href="#apod">APoD</a> | ||
<a class="nav-link text-light decorate-text" href="#apod"><i class="fa-solid fa-image" style="color: #ffffff;"></i> APoD</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link text-light decorate-text" href="#mars">MartianImagery</a> | ||
<a class="nav-link text-light decorate-text" href="#mars"><i class="fa-solid fa-globe" style="color: #ffffff;"></i> MartianImagery</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a href="#contact" class="nav-link"> | ||
<button class="btn btn-outline-light rounded-pill contact-btn" type="submit">Contact Us</button> | ||
<button class="btn btn-outline-light rounded-pill contact-btn" type="submit"><lord-icon | ||
src="https://cdn.lordicon.com/srsgifqc.json" | ||
trigger="hover" | ||
colors="primary:#ffffff" | ||
style="width:15px;height:15px"> | ||
</lord-icon> Contact Us</button> | ||
</a> | ||
</li> | ||
</ul> | ||
|
@@ -312,16 +323,16 @@ <h1 align="center" class="section_title" id="contact">Contact Us</h1> | |
<div class="right"> | ||
<form id="form"> | ||
<div class="mb-3"> | ||
<label for="exampleInputName" class="form-label text-light">Name</label> | ||
<label for="exampleInputName" class="form-label text-light"><i class="fa-solid fa-signature" style="color: #ffffff;"></i> Name</label> | ||
<input type="text" class="form-control" id="exampleInputName" placeholder="Enter your name"> | ||
</div> | ||
<div class="mb-3"> | ||
<label for="exampleInputEmail2" class="form-label text-light">Email address</label> | ||
<label for="exampleInputEmail2" class="form-label text-light"><i class="fa-solid fa-envelope" style="color: #ffffff;"></i> Email address</label> | ||
<input type="email" class="form-control" id="exampleInputEmail2" aria-describedby="emailHelp" placeholder="Enter your email"> | ||
<div id="emailHelp" class="form-text text-light">We'll never share your email with anyone else.</div> | ||
</div> | ||
<div class="mb-3"> | ||
<label for="exampleInputMessage" class="form-label text-light">Message</label> | ||
<label for="exampleInputMessage" class="form-label text-light"><i class="fa-solid fa-message" style="color: #ffffff;"></i> Message</label> | ||
<textarea class="form-control" name="message" id="exampleInputMessage" rows="4" placeholder="feel free to ask your queries!"></textarea> | ||
</div> | ||
<button type="submit" class="btn btn-primary" onclick="alert('Mail has been sent successfully!')">Submit</button> | ||
|