blob: 3abb5dddfd92069822f7df3cd9cdfeb9e14fcef2 (
plain)
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Link Tree</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/1.0.2/css/bulma.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/js/all.min.js"></script>
</head>
<body>
<section class="section">
<div class="container">
<div class="columns is-centered">
<div class="column is-half">
<!-- Profile Section -->
<div class="has-text-centered mb-6">
<figure class="image is-128x128 is-inline-block mb-4">
<img class="is-rounded" src="profile.png" alt="Profile Picture">
</figure>
<h1 class="title is-3">John Doe</h1>
<p class="subtitle is-5 mb-4">Digital Creator & Developer</p>
</div>
<!-- Links Section -->
<div class="buttons is-flex is-flex-direction-column">
<a href="#" class="button is-fullwidth is-link is-rounded mb-3">
<span class="icon">
<i class="fab fa-twitter"></i>
</span>
<span>Twitter</span>
</a>
<a href="#" class="button is-fullwidth is-info is-rounded mb-3">
<span class="icon">
<i class="fab fa-linkedin"></i>
</span>
<span>LinkedIn</span>
</a>
<a href="#" class="button is-fullwidth is-dark is-rounded mb-3">
<span class="icon">
<i class="fab fa-github"></i>
</span>
<span>GitHub</span>
</a>
<a href="#" class="button is-fullwidth is-danger is-rounded mb-3">
<span class="icon">
<i class="fab fa-youtube"></i>
</span>
<span>YouTube</span>
</a>
<!-- Copy past the following block to add more links -->
<a href="https://example.com" class="button is-fullwidth is-success is-rounded mb-3">
<span class="icon">
<!-- Change the icon to any other icon from fontawesome -->
<!-- https://fontawesome.com/v6/search?ic=free -->
<i class="fas fa-globe"></i>
</span>
<span>Link to something else</span>
</a>
<!-- end of block -->
</div>
<!-- Footer -->
<footer class="mt-6 has-text-centered">
<p class="has-text-grey">
© 2025 John Doe • Made with <i class="fas fa-heart has-text-danger"> in Boulder, CO</i>
</p>
</footer>
</div>
</div>
</div>
</section>
</body>
</html>
|