- Sponsor
-
Notifications
You must be signed in to change notification settings - Fork 266
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Loading status checks…
Merge pull request #1016 from Mohitranag18/elementslink
Fix Broken Links and Missing Header Elements in All Pages (#1009)
Showing
6 changed files
with
115 additions
and
101 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
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
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
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 |
---|---|---|
|
@@ -900,77 +900,79 @@ | |
</head> | ||
|
||
<body> | ||
<!-- header section starts --> | ||
<header> | ||
<a href="index.html" class="logo">Resum Resume<span>.</span></a> | ||
|
||
<nav class="navbar"> | ||
<a href="index.html">Home</a> | ||
<a href="about.html">About</a> | ||
<a href="resume.html">Build Resume</a> | ||
<a href="RateMyResume.html">RateMyResume</a> | ||
<a href="signup.html">Sign Up</a> | ||
<a href="login.html">Login</a> | ||
</nav> | ||
|
||
<div class="icons"> | ||
<a href="about.html"><i class="fas fa-info-circle"></i></a> | ||
<a href="#" ><i class="fas fa-envelope"></i></a> | ||
<a href="login.html" id="loginIcon"><i class="fas fa-user"></i></a> | ||
</header> | ||
<style> | ||
body{ | ||
padding: 0; | ||
} | ||
.logo{ | ||
font-size: 2.3rem; | ||
} | ||
header{ | ||
height: 8rem; | ||
position: relative; | ||
padding-left: 3rem; | ||
padding-right: 3rem; | ||
display: flex; | ||
justify-content: space-around; | ||
align-items: center; | ||
} | ||
footer{ | ||
margin-top: 5rem; | ||
} | ||
.navbar{ | ||
width: 60%; | ||
} | ||
.navbar a{ | ||
font-weight: 400; | ||
} | ||
.icons{ | ||
display: flex; | ||
align-items: center; | ||
width: 16%; | ||
} | ||
.icons a{ | ||
font-size: 2rem; | ||
display: inline; | ||
color: white; | ||
margin-left: 1rem; | ||
line-height: 2.3rem; | ||
} | ||
.icons i { | ||
margin-left: 1.5rem; | ||
} | ||
.icons p{ | ||
display: inline; | ||
color: white; | ||
font-size: 2.3rem; | ||
margin-left: 1rem; | ||
line-height: 2.3rem; | ||
} | ||
.fa-coins i{ | ||
font-size: 2rem; | ||
color: rgb(246, 180, 0); | ||
} | ||
</style> | ||
<!-- header section ends --> | ||
<!-- header section starts --> | ||
<header> | ||
<a href="index.html" class="logo">Resum Resume<span>.</span></a> | ||
|
||
<nav class="navbar"> | ||
<a href="index.html">Home</a> | ||
<a href="about.html">About</a> | ||
<a href="resume.html">Build Resume</a> | ||
<a href="RateMyResume.html">RateMyResume</a> | ||
<a href="signup.html">Sign Up</a> | ||
<a href="login.html">Login</a> | ||
</nav> | ||
|
||
<div class="icons"> | ||
<a href="about.html"><i class="fas fa-info-circle"></i></a> | ||
<a href="#" ><i class="fas fa-envelope"></i></a> | ||
<a href="login.html" id="loginIcon"><i class="fas fa-user"></i></a> | ||
<i class="fa-solid fa-coins"></i> <p id="SkillCoins"></p></div> | ||
</header> | ||
<style> | ||
body{ | ||
padding: 0; | ||
} | ||
.logo{ | ||
font-size: 2.3rem; | ||
} | ||
header{ | ||
height: 8rem; | ||
position: relative; | ||
padding-left: 3rem; | ||
padding-right: 3rem; | ||
display: flex; | ||
justify-content: space-around; | ||
align-items: center; | ||
} | ||
footer{ | ||
margin-top: 5rem; | ||
} | ||
.navbar{ | ||
width: 60%; | ||
} | ||
.navbar a{ | ||
font-weight: 400; | ||
} | ||
.icons{ | ||
display: flex; | ||
align-items: center; | ||
width: 16%; | ||
} | ||
.icons a{ | ||
font-size: 2rem; | ||
display: inline; | ||
color: white; | ||
margin-left: 1rem; | ||
line-height: 2.3rem; | ||
} | ||
.icons i{ | ||
margin-left: 1.5rem; | ||
} | ||
.icons p{ | ||
display: inline; | ||
color: white; | ||
font-size: 2.3rem; | ||
margin: 0; | ||
margin-left: 1rem; | ||
line-height: 2.3rem; | ||
} | ||
.fa-coins{ | ||
font-size: 2rem; | ||
color: rgb(246, 180, 0); | ||
} | ||
</style> | ||
<!-- header section ends --> | ||
|
||
<!-- home section starts --> | ||
<section class="home" id="Home"> | ||
|
@@ -1191,7 +1193,7 @@ <h3>Connect With Us</h3> | |
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script> | ||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script> | ||
|
||
<script src="RateMyResume.js"></script> | ||
|
||
</body> | ||
|
||
|
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
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