Add initial HTML, CSS, and JS files for ShowJoe.Social website
This commit is contained in:
41
index.html
Normal file
41
index.html
Normal file
@@ -0,0 +1,41 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>ShowJoe.Social</title>
|
||||
<link
|
||||
rel="stylesheet"
|
||||
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"
|
||||
/>
|
||||
<link rel="stylesheet" href="style.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<h1>Yousseif Muhammed</h1>
|
||||
<p>ShowJoe.Social - Connect with me on social media</p>
|
||||
<div class="social-links">
|
||||
<a href="https://yousseif.xyz" target="_blank" class="social-link">
|
||||
<i class="fas fa-globe"></i>
|
||||
<span>Portfolio</span>
|
||||
</a>
|
||||
<a
|
||||
href="https://github.com/yousseif"
|
||||
target="_blank"
|
||||
class="social-link"
|
||||
>
|
||||
<i class="fab fa-github"></i>
|
||||
<span>GitHub</span>
|
||||
</a>
|
||||
<a
|
||||
href="https://linkedin.com/in/yousseif"
|
||||
target="_blank"
|
||||
class="social-link"
|
||||
>
|
||||
<i class="fab fa-linkedin"></i>
|
||||
<span>LinkedIn</span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user