-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (44 loc) · 2.26 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ninja Yubaraj</title>
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<!-- Font Awesome Icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<div class="profile">
<img src="profile-image.png" alt="Profile Image" class="profile-img">
<h1 class="profile-name">Ninja Yubaraj</h1>
<p class="profile-desc">Cybersecurity Engineer | Full Stack Developer | DevOps Specialist</p>
</div>
<div class="links">
<a href="https://github.com/example" class="btn" target="_blank">
<i class="fab fa-github icon"></i> <span class="btn-text">View My GitHub</span>
</a>
<a href="https://your-portfolio.com" class="btn" target="_blank">
<i class="fas fa-globe icon"></i> <span class="btn-text">My Portfolio</span>
</a>
<a href="https://medium.com/@example" class="btn" target="_blank">
<i class="fas fa-pencil-alt icon"></i> <span class="btn-text">Read My Blog</span>
</a>
<a href="https://linkedin.com/in/example" class="btn" target="_blank">
<i class="fab fa-linkedin icon"></i> <span class="btn-text">Connect on LinkedIn</span>
</a>
</div>
<div class="social">
<a href="https://twitter.com/example" class="social-icon" target="_blank"><i class="fab fa-twitter"></i></a>
<a href="https://linkedin.com/in/example" class="social-icon" target="_blank"><i class="fab fa-linkedin"></i></a>
<a href="https://github.com/example" class="social-icon" target="_blank"><i class="fab fa-github"></i></a>
<a href="https://medium.com/@example" class="social-icon" target="_blank"><i class="fab fa-medium-m"></i></a>
</div>
</div>
<script src="script.js"></script>
</body>
</html>