forked from appdev-projects/links
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
170 lines (135 loc) · 4.19 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<!DOCTYPE html>
<html lang="en">
<head>
<title>My Link in Bio</title>
<style>
body {
background-color: #f3d2c1;
padding-top: 40px;
padding-bottom: 40px;
display: flex;
justify-content: center;
}
.name {
color:#001858;
display: flex;
justify-content: center;
font-family:Verdana, Geneva, Tahoma, sans-serif;
font-weight: bold;
font-size:larger;
}
.socials {
display:flex;
justify-content: space-evenly;
}
.social-button a {
display: flex;
justify-content: center;
}
.banner {
display: flex;
justify-content: center;
}
.banner-image {
width: 128 px;
max-height: 128 px;
border-radius: 128px;
object-fit:cover;
border-width: 10px;
border-color: #8bd3dd;
border-style:double;
}
.thumbnails {
width: 48px;
height: 48px;
border-radius: 48px;
object-fit: cover;
display: flex;
justify-content: space-around;
}
.link-thumbnails {
width: 40px;
height: 40px;
border-radius: 40px;
object-fit: cover;
border-style: solid;
border-width: 3px;
border-color: #8bd3dd;
}
.social-button {
border-radius: 52px;
border-color: #001858;
padding: 4px 4px;
background-color: #f582ae;
}
.links {
background-color: #fef6e4;
display: flex;
align-items: center;
border-radius: 700px;
border-style: solid;
border-width: 3px;
border-color: #8bd3dd;
}
.links a {
color: #172c66;
text-decoration: none;
text-align: center;
padding: 5px;
flex-grow: 1;
font-family:Verdana, Geneva, Tahoma, sans-serif;
}
.items {
display:flex;
flex-direction: column;
gap: 30px;
max-width: 700px;
justify-content: center;
}
</style>
</head>
<body>
<div class="items">
<div class="banner">
<img src="thumbnails/profile128.jpg" alt="Rowen Trombo Photo by Bella Peterson from July 8th 2023" class="banner-image">
</div>
<div class='name'>
Rowen Trombo
</div>
<div class="socials">
<button class="social-button"><a href="https://github.com/rentrombo" target=" _blank">
<img src="thumbnails/alexander-shatov-PHH_0uw9-Qw-unsplash.jpg" alt="small computer with hello written on it in black and white" class="thumbnails">
</a></button>
<button class="social-button"><a href="https://www.linkedin.com/in/rowentrombo/" target="_blank">
<img src="thumbnails/alexander-shatov-9Zjd7PE_FRM-unsplash.jpg" alt="small 3D linkedin logo - 'in' in a square" class="thumbnails">
</a></button>
<button class="social-button">
<a href="https://www.instagram.com/renthegremlin/" target="_blank">
<img src="thumbnails/alexander-shatov-71Qk8ODIBko-unsplash.jpg" alt="3D instagram logo- a camera icon in pink" class="thumbnails">
</a></button>
<button class="social-button">
<a href="https://youtube.com/@renthegremlin" target="_blank">
<img src="thumbnails/alexander-shatov-niUkImZcSP8-unsplash.jpg" alt="3D youtube logo- a red box and a white triangle" class="thumbnails">
</a></button>
</div>
<div class="links">
<img src ="thumbnails/brittney-burnett-qFS2hU6DFhk-unsplash.jpg" alt="neon sign stating 'with all your heart' in pink and blue" class="link-thumbnails">
<a target="_blank" href="https://transgenderlawcenter.org/trans-health-legal-fund/">
Trans Health Legal Fund
</a>
</div>
<div class="links">
<img src = 'thumbnails/joshua-reddekopp-SyYmXSDnJ54-unsplash.jpg' alt="a partially closed laptop illuminated by pink and blue lights"class="link-thumbnails">
<a target="_blank" href="https://time.com/6287271/coding-beyond-gender-binary/">
'Coding Needs to Go Beyond the Gender Binary' - Meredith Broussard
</a>
</div>
<div class="links">
<img src = 'thumbnails/lorenzo-herrera-p0j-mE6mGo4-unsplash.jpg' alt='retro joysticks, controllers and video game consoles lit up pink and blue'class="link-thumbnails">
<a target="_blank" href="https://codepip.com/games/">
Learn Where I Learnt -codepip
</a>
</div>
</div>
</body>
</html>