-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
51 lines (42 loc) · 2.01 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
51
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.3/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css">
<link rel="stylesheet" href="assets/css/style.css">
<!-- Tab Title -->
<title>Your Name - Links</title>
<!-- Favicon -->
<link rel="icon" href="assets/images/avatar.png">
</head>
<body>
<div class="container text-center col-md-6 mx-auto my-5">
<!-- Avatar -->
<img class="img-fluid rounded-circle mb-3" src="assets/images/avatar.png" width="150" alt="Avatar">
<!-- Display Name -->
<h1>Your Name</h1>
<!-- Bio -->
<p>Your bio here.</p>
<!-- Social Icons -->
<div class="my-5">
<a class="facebook" href="https://facebook.com/username"><i class="fa-brands fa-facebook fa-2x fa-fw"></i></a>
<a class="x" href="https://x.com/username"><i class="fa-brands fa-x-twitter fa-2x fa-fw"></i></a>
<a class="instagram" href="https://instagram.com/username"><i class="fa-brands fa-instagram fa-2x fa-fw"></i></a>
<a class="snapchat" href="https://snapchat.com/add/username"><i class="fa-brands fa-snapchat fa-2x fa-fw"></i></a>
<a class="tiktok" href="https://tiktok.com/@username"><i class="fa-brands fa-tiktok fa-2x fa-fw"></i></a>
<a class="linkedin" href="https://linkedin.com/in/username"><i class="fa-brands fa-linkedin fa-2x fa-fw"></i></a>
</div>
<!-- Links -->
<div class="mb-5">
<p><a class="btn btn-primary w-100" href="https://example.com">A Link</a></p>
<p><a class="btn btn-primary w-100" href="https://example.org">Another Link</a></p>
<p><a class="btn btn-primary w-100" href="https://example.net">A Third Link</a></p>
</div>
<!-- Footer -->
<small>Developed by <a href="https://robertd.uk" target="_blank">Robert Dixon</a></small>
</div>
<script src="assets/js/script.js"></script>
</body>
</html>