-
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
9e13c3f
commit 5d0b90d
Showing
4 changed files
with
50 additions
and
10 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 |
---|---|---|
|
@@ -20,6 +20,10 @@ | |
|
||
<body> | ||
<main> | ||
<div class="profile-photo"> | ||
<!-- Replace with your photo URL --> | ||
<img src="./style/me.jpg" alt="Naman Monga" /> | ||
</div> | ||
<h1 class="intro">Hello, I'm Naman!</h1> | ||
<div class="buttons"> | ||
<a target="_blank" href="https://blog.namanmonga.in" | ||
|
@@ -32,14 +36,14 @@ <h1 class="intro">Hello, I'm Naman!</h1> | |
I 💙 programming | speaking | social-media | ||
</p> | ||
<div class="icons-social"> | ||
<a target="_blank" href="https://twitter.com/inamanmonga"><i class="fab fa-twitter"></i></a> | ||
<a target="_blank" href="https://twitter.com/inamanmonga"><i class="fab fa-twitter"></i></a> | ||
<a target="_blank" href="https://www.youtube.com/c/bahutscopehai"><i class="fab fa-youtube"></i></a> | ||
<a target="_blank" href="https://github.com/Naman-Monga"><i class="fab fa-github"></i></a> | ||
<a target="_blank" href="https://www.linkedin.com/in/namanmonga"><i class="fab fa-linkedin"></i></a> | ||
<a target="_blank" href="https://www.instagram.com/findingelephants/"><i class="fab fa-instagram"></i></a> | ||
</div> | ||
<br /> | ||
<p><i class="far fa-envelope"></i> [email protected]</p> | ||
<a href="mailto:[email protected]" style="text-decoration: none; color: inherit;"><i class="far fa-envelope"></i> [email protected]</a> | ||
</main> | ||
|
||
<footer style="color: black"></footer> | ||
|
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 |
---|---|---|
@@ -1,14 +1,19 @@ | ||
/* Theme */ | ||
|
||
main { | ||
background: #FAFAFA; | ||
color: #0277BD; | ||
background: #1a1a1a; | ||
color: #e0e0e0; | ||
} | ||
|
||
.icons-social a { | ||
color: #0277BD; | ||
color: #64b5f6; | ||
transition: color 0.3s ease; | ||
} | ||
|
||
.icons-social a svg path{ | ||
fill: #0277BD; | ||
.icons-social a:hover { | ||
color: #90caf9; | ||
} | ||
|
||
.icons-social a svg path { | ||
fill: #64b5f6; | ||
} |