-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsocials.html
More file actions
48 lines (44 loc) · 1.65 KB
/
socials.html
File metadata and controls
48 lines (44 loc) · 1.65 KB
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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Socials</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel="stylesheet" type ="text/css" href="style.css">
</head>
<body>
<nav class="navbar">
<div class="logo">Ming Xuan's website</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Me</a></li>
<li><a href="travels.html">Travelled</a></li>
<li><a href="gamereview.html">Game Review</a></li>
<li><a href="socials.html">Socials</a></li>
</ul>
</nav>
<section class="social-section">
<div class="content-card">
<h1>Connect with Me!</h1>
<div class="social-buttons">
<!-- Instagram Button -->
<a href="https://www.instagram.com/mingxuannn_/" target="_blank" class="social-btn instagram">
<i class="fab fa-instagram"></i> Instagram
</a>
<!-- Linkedin Button -->
<a href="https://www.linkedin.com/in/ming-xuan-yong-98832b1a6/" target="_blank" class="social-btn linkedin">
<i class="fab fa-linkedin"></i> Linkedin
</a>
<!-- YouTube Button -->
<a href="https://www.youtube.com/@yongmingxuan6920" target="_blank" class="social-btn youtube">
<i class="fab fa-youtube"></i> YouTube
</a>
<!-- GitHub Button -->
<a href="https://github.com/mingxuan0710" target="_blank" class="social-btn github">
<i class="fab fa-github"></i> GitHub
</a>
</div>
</div>
</section>
</body>
</html>