-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
108 lines (96 loc) · 3.34 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
<!DOCTYPE html>
<!-- saved from url=(0019)http://example.com/ -->
<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Jeremy's Space</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style type="text/css">
h1 {
line-height: 100px;
text-align: center;
}
body {
background-image: url("https://images.pexels.com/photos/998641/pexels-photo-998641.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2");
margin: 0;
padding: 0;
font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
div {
width: 600px;
margin: 5em auto;
padding: 2em;
background-color: #fdfdff;
border-radius: 0.5em;
box-shadow: 2px 3px 7px 2px rgba(0,0,0,0.02);
}
a:link, a:visited {
color: #38488f;
text-decoration: none;
}
@media (max-width: 700px) {
div {
margin: 0 auto;
width: auto;
}
}
.image {
/* the magic */
display: block;
width: 180px;
height: 180px;
overflow: hidden;
-webkit-border-radius: 180px;
-moz-border-radius: 180px;
-ms-border-radius: 180px;
-o-border-radius: 180px;
border-radius: 180px;
/* the rest */
position: relative; /* for the overlay later */
margin: 0px auto;
text-align: center;
margin-bottom: 10px;
border: 3px solid #FFF;
-webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3),inset 0px 3px 8px rgba(0, 0, 0, 0.3);
-moz-box-shadow: 0px 1px 2px rgba(0,0,0,0.3),inset 0px 3px 8px rgba(0,0,0,0.3);
box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3),inset 0px 3px 8px rgba(0, 0, 0, 0.3);
}
img {
max-width: 100%;
height: auto;
vertical-align: middle;
border: 0;
/* make resized images look good in IE */
-ms-interpolation-mode: bicubic;
}
/* here's a hover overlay, in case you want that */
.image span {
display: none;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: #888;
background: rgba(0,0,0,.5);
color: #fff;
padding: 3em 1em 0;
}
.image:hover span {
display: block;
}
</style>
</head>
<body>
<div>
<a href="http://placekitten.com" class="image">
<img alt="Some Sweet Kitten" src="https://media-exp1.licdn.com/dms/image/C5603AQG_Sw9npO7vIg/profile-displayphoto-shrink_400_400/0/1627385878879?e=1675296000&v=beta&t=-DOLQJ-KhmMEO0ZYKfld9SK74m2YUnAOscw3K6nytis"></a>
<h1>🤙 Jeremy's space</h1>
<p>Hey there, I'm Jeremy Ravenel, leading Naas open source project. This is my personal website entirely created and deployed using Notebooks and magic low-code formulas on <a href="https://www.naas.ai/">Naas.ai</a></p>
<p>Follow me on:</p>
<ul>
<li><a target="_blank" href="https://fr.linkedin.com/in/j%C3%A9r%C3%A9my-ravenel-8a396910">LinkedIn</a></li>
<li><a target="_blank" href="https://twitter.com/ravenel_jeremy?lang=en">Twitter</a></li>
<li><a target="_blank" href="https://github.com/jravenel">Github</a></li>
<li><a target="_blank" href="https://www.instagram.com/jeremy_lvr/">Instagram</a></li>
</ul>
</div>
</body></html>