-
Notifications
You must be signed in to change notification settings - Fork 19
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
97d4b9c
commit 43956e6
Showing
1 changed file
with
42 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<article> | ||
<h3>YashYadav2</h3> | ||
<p>Hey, I am Yash. I am pasionate software developer</p> | ||
<h4>Programming languages I use Python, JavaScript and C++</h4> | ||
<section class="container"> | ||
<div class="badge" style="background-color: #3874a4; color: white"> | ||
Python | ||
</div> | ||
<div class="badge" style="background-color: #f7df1e; color: black"> | ||
JavaScript | ||
</div> | ||
</section> | ||
|
||
<h4>Tools I use</h4> | ||
<section class="container"> | ||
<img | ||
class="icon" | ||
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/bash/bash-original.svg" | ||
/> | ||
<img | ||
class="icon" | ||
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/linux/linux-original.svg" | ||
/> | ||
</section> | ||
</article> | ||
<style> | ||
body { | ||
font-family: sans-serif; | ||
} | ||
.container { | ||
display: flex; | ||
flex-wrap: wrap; | ||
gap: 1rem; | ||
} | ||
.badge { | ||
padding: 0.5rem; | ||
border-radius: 0.25rem; | ||
} | ||
.icon { | ||
width: 2rem; | ||
} | ||
</style> |