-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6676c27
commit b2945b9
Showing
6 changed files
with
453 additions
and
51 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
|
@@ -58,12 +58,17 @@ | |
a:hover { | ||
color: white; | ||
} | ||
|
||
@font-face { | ||
font-family: HeyComic; | ||
src: url(Hey\ Comic.ttf); | ||
} | ||
|
||
|
||
@font-face { | ||
font-family: HeyComic; | ||
src: url(Hey\ Comic.ttf); | ||
} | ||
|
||
@font-face { | ||
font-family: About; | ||
src: url(Insanibc.ttf); | ||
} | ||
|
||
.hd { | ||
font-family: HeyComic; | ||
} | ||
|
@@ -130,19 +135,27 @@ | |
margin-top: 20px; | ||
margin-left: 70px; | ||
color: wheat; | ||
font-family: HeyComic; | ||
} | ||
.contact:hover{ | ||
.text{ | ||
background-color: rgba(49, 66, 61, 0.674); | ||
background-color: rgba(49, 66, 61, 0.767); | ||
position: relative; | ||
margin-top: -109px; | ||
margin-top: -108px; | ||
border-radius: 0px 0px 15px 15px; | ||
} | ||
} | ||
.text{ | ||
background-color: rgba(168, 160, 160, 0.515); | ||
align-items: center; | ||
transition-duration: 0.5s; | ||
} | ||
p{ | ||
justify-content: center; | ||
align-items: center; | ||
display: grid; | ||
font-family: Arial, Helvetica, sans-serif; | ||
font-weight: bold; | ||
} | ||
|
||
</style> | ||
</head> | ||
|
@@ -166,7 +179,7 @@ <h1 class="heading">   Contact</h1> | |
<div class="text"> | ||
|
||
<h2>Garvit Solanki</h4> | ||
<p>HTML</p> | ||
<p>HTML - CSS</p> | ||
<p>[email protected]</p> | ||
<p>Frontend Developer</p> | ||
</div> | ||
|
@@ -181,6 +194,26 @@ <h2>Lakshit Solanki</h4> | |
<p>Frontend Developer</p> | ||
</div> | ||
</div> | ||
<div class="contact"> | ||
<img src="Gauransh.jpg" alt=""> | ||
<div class="text"> | ||
|
||
<h2>Gauransh Sugandhi</h4> | ||
<p>HTML - CSS</p> | ||
<p>[email protected]</p> | ||
<p>Frontend Developer</p> | ||
</div> | ||
</div> | ||
<div class="contact"> | ||
<img src="Purva.jpg" alt=""> | ||
<div class="text"> | ||
|
||
<h2>Purva Balar</h4> | ||
<p>PHP</p> | ||
<p>[email protected]</p> | ||
<p>Backend Developer</p> | ||
</div> | ||
</div> | ||
|
||
|
||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,5 @@ | ||
let a = prompt("Enter your grade :"); | ||
if (a>=90&& a<=100){ | ||
console.log("A") | ||
let lakshit; | ||
let x = 5; | ||
for (let a = 1; a <= 10 ; a++){ | ||
console.log(x,"x",a,"=",x*a) | ||
} | ||
else if (a>=70&& a<=89){ | ||
console.log("B") | ||
} | ||
else if (a>=60&& a<=69){ | ||
console.log("C") | ||
} | ||
else if (a>=50&& a<=59){ | ||
console.log("D") | ||
} | ||
else if (a>=0&& a<=49){ | ||
console.log("F") | ||
} | ||
else { | ||
console.log("Provide grades between 1 to 100") | ||
} |
Oops, something went wrong.