-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
141 lines (124 loc) · 3.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Clément Mas - Adventurer & Entrepreneur</title>
<meta
name="description"
content="French adventurer. Cycled around Australia. Rowed across the Atlantic ocean. Climbed mount Kilimanjaro. Organising bike expeditions"
/>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" href="/favicon.ico" />
<style>
body {
/* System font */
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
"Segoe UI Symbol";
/* Mobile padding */
margin: 20px;
}
/* Container */
header,
main,
footer {
max-width: 780px;
margin: 0 auto;
}
/* Content */
@media (min-width: 600px) {
.flex {
display: flex;
gap: 30px;
}
}
img {
border-radius: 100%;
}
p {
line-height: 1.6;
}
hr {
height: 1px;
border: none;
background-color: #ccc;
}
/* Footer */
footer {
display: flex;
justify-content: center;
}
</style>
</head>
<body>
<!-- Header -->
<header>
<h1>Clément Mas</h1>
<h2>Adventurer & Entrepreneur</h2>
</header>
<br />
<hr />
<br />
<!-- Content -->
<main class="flex">
<!-- Profile photo -->
<img src="/clement-mas.webp" alt="Clément Mas" width="180" height="180" />
<!-- Text -->
<div>
<p>
French adventurer and entrepreneur. Recently
<a
href="https://clem.travelmap.net/rowing-across-the-atlantic-ocean"
target="_blank"
>rowed across the Atlantic ocean</a
>. Previously
<a
href="https://clem.travelmap.net/cycling-around-australia"
target="_blank"
>cycled around Australia</a
>.
</p>
<p>
Founder of
<a href="https://travelmap.net" target="_blank">TravelMap</a>.
</p>
</div>
</main>
<br />
<hr />
<br />
<!-- Footer -->
<footer>
<a href="https://clem.travelmap.net" target="_blank" rel="noopener">
TravelMap</a
>
<a
href="https://www.linkedin.com/in/clementmas"
target="_blank"
rel="noopener noreferrer"
>LinkedIn</a
>
<a
rel="noopener noreferrer"
href="https://www.facebook.com/TravelMapCommunity"
target="_blank"
>Facebook</a
>
<a
href="https://twitter.com/clem_mas"
target="_blank"
rel="noopener noreferrer"
>Twitter</a
>
</footer>
<!-- Plausible analytics -->
<script
defer
data-domain="clementmas.com"
src="https://sessions.travelmap.net/js/script.js"
></script>
</body>
</html>