-
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.
Added contribution page with skills section (#6)
- Loading branch information
1 parent
6bc1e73
commit 400867e
Showing
1 changed file
with
43 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,43 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Contribution Page</title> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> | ||
<style> | ||
body { | ||
font-family: Arial, sans-serif; | ||
text-align: center; | ||
} | ||
.skills-container { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
gap: 40px; | ||
} | ||
.skill { | ||
text-align: center; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<h2 style="color:blueviolet;">Maintaining First Contributions</h2> | ||
<p style="font-size: large;">Technical Skills that I am familiar with:</p> | ||
|
||
<div class="skills-container"> | ||
<div class="skill"> | ||
<p><i class="fab fa-java fa-6x"></i></p> | ||
<p>Java</p> | ||
</div> | ||
<div class="skill"> | ||
<p><i class="fab fa-angular fa-6x"></i></p> | ||
<p>AngularJS</p> | ||
</div> | ||
<div class="skill"> | ||
<p><i class="fab fa-php fa-6x"></i></p> | ||
<p>PHP</p> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |