-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
90 lines (67 loc) · 3.24 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
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
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Opentree</title>
<link href="assets/css/icons.css" rel="stylesheet">
<link rel="icon" type="image/png" href="favicon.png"> <!-- Replace the favicon in the directory except if you love kittens -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
:root {
--main-bg: #F1F5BC; /* The color for your background */
--primary: #2D5EFA; /* The color for the text */
--radius : 5em; /* How round you want the buttons */
/* You can find nice ideas here: https://randoma11y.com/ */
}
</style>
<link href="assets/css/style.css" rel="stylesheet">
</head>
<body>
<div id="profile">
<img src="http://placekitten.com/400/400" alt="Photography of the owner" /> <!-- Change your picture here and alt with your name -->
</div>
<h1>Open Tree</h1> <!-- Put your name here -->
<p class="intro">Change your description here</p> <!-- And a small description here -->
<section class="round-links" id="general">
<!-- Linkedin -->
<a class="button" href="https://www.linkedin.com/in/xxx/" target="_blank" rel="noopener">
<i class="ph-fill ph-linkedin-logo" alt="Linkedin"></i>
</a>
<!-- Email -->
<a class="button" href="mailto:[email protected]" target="_blank" rel="noopener"> <!-- change the HREF with a mailto link generated here: https://www.knechtology.com/stop-spam/email_encoder.html -->
<i class="ph-fill ph-envelope-simple" alt="Email"></i>
</a>
<!-- Instagram -->
<a class="button" rel="me" href="https://www.instagram.com/xxx/" target="_blank"">
<i class="ph-fill ph-instagram-logo" alt="Instagram"></i>
</a>
<!-- Mastodon -->
<a class="button" rel="me" href="https://mastodon.social/XXX" target="_blank">
<i class="ph-fill ph-share-network" alt="Mastodon"></i>
</a>
<!-- Twitter -->
<a class="button" rel="me" href="https://twitter.com/XXX" target="_blank">
<i class="ph-fill ph-twitter-logo" alt="Twitter"></i>
</a>
</section>
<!-- Large buttons -->
<!-- You can create new buttons by duplicating a button and changing the <i> icon with a new one taken from: https://phosphoricons.com/ -->
<!-- Blog -->
<a class="button" href="xxx" target="_blank"> <!-- Change with your blog adress -->
<i class="ph-fill ph-rss" aria-hidden="true"></i> Blog
</a>
<!-- Figma Community -->
<a class="button" rel="me" href="https://www.figma.com/@xxx" target="_blank">
<i class="ph-fill ph-figma-logo" aria-hidden="true"></i> Figma Community
</a>
<!-- Dribbble -->
<a class="button" rel="me" href="https://dribbble.com/xxx" target="_blank">
<i class="ph-fill ph-dribbble-logo" aria-hidden="true"></i> Dribbble
</a>
<!-- Github -->
<a class="button button-github" rel="me" href="https://github.com/xxx/" target="_blank">
<i class="ph-fill ph-github-logo" aria-hidden="true"></i> Github
</a>
</body>
</html>