Skip to content

Commit

Permalink
Merge pull request #1016 from Mohitranag18/elementslink
Browse files Browse the repository at this point in the history
Fix Broken Links and Missing Header Elements in All Pages (#1009)
GarimaSingh0109 authored Nov 10, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
2 parents 0c03a15 + 63d3239 commit fd03fb3
Showing 6 changed files with 115 additions and 101 deletions.
8 changes: 4 additions & 4 deletions RateMyResume.css
Original file line number Diff line number Diff line change
@@ -75,7 +75,7 @@ body{
width: 90%;
position: relative;
border-radius: 3rem;
border: 2px solid white;
border: 2px solid black
}
.ratingHead{
width: 100%;
@@ -92,7 +92,7 @@ body{
background-color: gray;
border-radius: 3rem 0 0 0;
border-right: 1px solid white;
border-bottom: 2px solid white;
border-bottom: 2px solid black;
cursor: pointer;
}
.ratingboardhead{
@@ -104,7 +104,7 @@ body{
background-color: blue;
border-radius: 0 3rem 0 0;
border-left: 1px solid white;
border-bottom: 2px solid white;
border-bottom: 2px solid black;
cursor: pointer;
}
.ratingHead h1{
@@ -288,7 +288,7 @@ button:hover {
height: 100%;
position: relative;
border-radius: 3rem;
border: 2px solid white;
border: 2px solid black;
display: flex;
flex-direction: column;
}
4 changes: 3 additions & 1 deletion Resume.css
Original file line number Diff line number Diff line change
@@ -4,6 +4,9 @@ body {
margin: 0;
padding: 20px;
}
body{
background: linear-gradient(135deg, #dedfe0, #e7ebf0);
}
.icons{
display: flex;
align-items: center;
@@ -131,7 +134,6 @@ body {
display: flex;
justify-content: center;
margin-bottom: 5rem;
background-color: rgba(137, 137, 137, 0.25);
}
.progress-bar {
width: 70%;
16 changes: 10 additions & 6 deletions about.html
Original file line number Diff line number Diff line change
@@ -466,7 +466,7 @@

</script>

<!-- header section starts -->
<!-- header section starts -->
<header>
<a href="index.html" class="logo">Resum Resume<span>.</span></a>

@@ -483,8 +483,9 @@
<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>
<i class="fa-solid fa-coins"></i> <p id="SkillCoins"></p></div>
</header>
<style>
body{
padding: 0;
}
@@ -521,21 +522,23 @@
margin-left: 1rem;
line-height: 2.3rem;
}
.icons i {
.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 i{
.fa-coins{
font-size: 2rem;
color: rgb(246, 180, 0);
}
</style>
</style>
<!-- header section ends -->
<nav class="mobile-navbar">
<div class="main-links">
<a href="#home">Home</a>
@@ -792,6 +795,7 @@ <h3>Connect With Us</h3>
}
});
</script>
<script src="RateMyResume.js"></script>
</body>

</html>
146 changes: 74 additions & 72 deletions index.html
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>

21 changes: 13 additions & 8 deletions login.html
Original file line number Diff line number Diff line change
@@ -6,12 +6,13 @@
<title>Register & Login</title>
<link rel="stylesheet" href="login.css" />
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css" integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" />
</head>
<body>

<!-- header section starts -->
<header>
<!-- header section starts -->
<header>
<a href="index.html" class="logo">Resum Resume<span>.</span></a>

<nav class="navbar">
@@ -27,8 +28,9 @@
<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>
<i class="fa-solid fa-coins"></i> <p id="SkillCoins"></p></div>
</header>
<style>
body{
padding: 0;
}
@@ -65,21 +67,22 @@
margin-left: 1rem;
line-height: 2.3rem;
}
.icons i {
.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 i{
.fa-coins{
font-size: 2rem;
color: rgb(246, 180, 0);
}
</style>
</style>
<!-- header section ends -->

<div class="container">
@@ -287,6 +290,8 @@ <h3>Connect With Us</h3>
}

</style>
<script src="login.js"></script>

<script src="login.js"></script>
<script src="RateMyResume.js"></script>
</body>
</html>
21 changes: 11 additions & 10 deletions signup.html
Original file line number Diff line number Diff line change
@@ -143,8 +143,8 @@
</style>
</head>
<body>
<!-- header section starts -->
<header>
<!-- header section starts -->
<header>
<a href="index.html" class="logo">Resum Resume<span>.</span></a>

<nav class="navbar">
@@ -160,15 +160,14 @@
<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>
<i class="fa-solid fa-coins"></i> <p id="SkillCoins"></p></div>
</header>
<style>
body{
padding: 0;
}
header .logo{
.logo{
font-size: 2.3rem;
color: white;
margin: 0;
}
header{
height: 8rem;
@@ -200,21 +199,22 @@
margin-left: 1rem;
line-height: 2.3rem;
}
.icons i {
.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 i{
.fa-coins{
font-size: 2rem;
color: rgb(246, 180, 0);
}
</style>
</style>
<!-- header section ends -->

<div class="container">
@@ -445,4 +445,5 @@ <h3>Connect With Us</h3>


</body>
<script src="RateMyResume.js"></script>
</html>

0 comments on commit fd03fb3

Please sign in to comment.