-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
127 lines (117 loc) · 4.84 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- OG META -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://www.allanjacquet.com/" />
<meta property="og:title" content="Allan Jacquet-Cretides - I'm here" />
<meta property="og:description" content="A little place on the internet allowing you to find me in other places." />
<meta property="og:image" content="https://www.allanjacquet.com/allan.svg" />
<!-- TWITTER CARD -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@_Jumanjii_" />
<meta name="twitter:creator" content="@_Jumanjii_" />
<meta name="twitter:title" content="Allan Jacquet-Cretides - I'm here" />
<meta name="twitter:description" content="A little place on the internet allowing you to find me in other places." />
<meta name="twitter:image" content="https://www.allanjacquet.com/allan.svg" />
<title>Allan Jacquet-Cretides</title>
<link rel="icon" href="favicon.svg" sizes="any" type="image/svg+xml">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.9.1/css/bulma.min.css">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"
integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css2?family=Merriweather&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<style>
@media(max-width: 500px) {
.reverse-columns {
flex-direction: column-reverse;
display: flex;
}
}
.titled {
font-family: 'Merriweather', serif !important;
font-size: 58px !important;
font-weight: 400 !important;
line-height: 64px !important;
}
.subtitled {
font-family: 'Merriweather', serif !important;
font-size: 22px !important;
font-weight: 400 !important;
line-height: 36px !important;
}
</style>
</head>
<body>
<section class="hero is-white is-fullheight">
<div class="hero-body">
<div class="container">
<div class="columns is-vcentered reverse-columns">
<div class="column
is-10-mobile is-offset-1-mobile
is-10-tablet is-offset-1-tablet
is-5-desktop is-offset-1-desktop
is-5-widescreen is-offset-1-widescreen
is-5-fullhd is-offset-1-fullhd" data-aos="fade-down">
<h1 class="title titled is-1 mb-6">
Hello
</h1>
<h2 class=" subtitled subtitle is-4 has-text-weight-normal is-family-sans-serif">
I'm Allan Jacquet-Cretides.<br/>
A remote Software Engineer.
</h2>
<div class="buttons">
<a class="button is-rounded fa fa-twitter" style="display:flex" href="https://twitter.com/_Jumanjii_" aria-hidden="false"></a>
<a class="button is-rounded fa fa-linkedin" style="display:flex" href= "https://www.linkedin.com/in/allan-jacquet-cretides/" aria-hidden="true"></a>
<a class="button is-rounded fa fa-github" style="display:flex" href="https://github.com/Jumanjii" aria-hidden="true"></a>
<a class="button is-rounded fa fa-file-text" style="display:flex" href="https://www.doyoubuzz.com/allan-jacquet-cretides" aria-hidden="true"></a>
</div>
</div>
<div data-aos="fade-right" class="column
is-10-mobile is-offset-1-mobile
is-10-tablet is-offset-1-tablet
is-4-desktop is-offset-1-desktop
is-4-widescreen is-offset-1-widescreen
is-4-fullhd is-offset-1-fullhd">
<figure class="image is-square">
<img src="./allan.svg">
</figure>
</div>
</div>
</div>
</div>
</section>
<section class="hero is-medium has-text-centered">
<div class="hero-body">
<div class="container">
<div class="columns is-centered">
<div data-aos="zoom-in-up" class="column is-8">
<h1 class="title titled is-1 mb-6">
That's all. Maybe later you will find here my <span id="typewriter"></span>
</h1>
</div>
</div>
</div>
</div>
</section>
<script src="https://cdnjs.cloudflare.com/ajax/libs/TypewriterJS/2.13.1/core.min.js"></script>
<script>
new Typewriter('#typewriter', {
strings: ['articles.', 'star projects.', 'digital garden.' ],
autoStart: true,
loop: true,
});
</script>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init({
once: true
});
</script>
<script data-goatcounter="https://brhmzpjc3q2xsoy9bhdztchevqvc5af2.goatcounter.com/count"
async src="https://gc.zgo.at/count.js">
</script>
</body>
</html>