40 lines
1.2 KiB
HTML
40 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css" integrity="sha512-+4zCK9k+qNFUR5X+cKL9EIR+ZOhtIloNl9GIKS57V1MyNsYpYcUrUeQc9vNfzsWfV28IaLL3i96P9sdNyeRssA==" crossorigin="anonymous" />
|
|
<link rel="stylesheet" href="style.css" />
|
|
<title>Social Links</title>
|
|
</head>
|
|
<body>
|
|
<div class="container a b c" id="container">
|
|
<button id="open" class="open-btn">
|
|
<i class="fas fa-share-alt"></i>
|
|
</button>
|
|
|
|
<a href="https://youtube.com" class="ytb" target="_blank">
|
|
<i class="fab fa-youtube"></i>
|
|
</a>
|
|
|
|
<a href="https://twitter.com" class="twt" target="_blank">
|
|
<i class="fab fa-twitter"></i>
|
|
</a>
|
|
|
|
<a href="#" class="x" id="close">
|
|
<i class="fas fa-times"></i>
|
|
</a>
|
|
|
|
<a href="https://linkedin.com" class="lin" target="_blank">
|
|
<i class="fab fa-linkedin"></i>
|
|
</a>
|
|
|
|
<a href="https://instagram.com" class="ins" target="_blank">
|
|
<i class="fab fa-instagram"></i>
|
|
</a>
|
|
</div>
|
|
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html>
|