-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
92 lines (87 loc) · 5.36 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
<!doctype html>
<html lang="en">
<head>
<!--Info-->
<title>Jelle Zwiers</title> <!--Title-->
<meta name="description" content="My spot on the world wide web!"> <!--Description-->
<meta name="author" content="Jelle Zwiers"> <!--Author-->
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!--Viewport-->
<meta charset="utf-8"> <!--Character set-->
<link rel="icon" type="image/png" href="https://gravatar.com/avatar/917c423ca3c8776e7bc60aada301fc39?s=192"> <!--Favicon-->
<!--Apple-->
<meta name="apple-mobile-web-app-title" content="Jelle Zwiers"> <!--Title-->
<link rel="apple-touch-icon" href="https://gravatar.com/avatar/917c423ca3c8776e7bc60aada301fc39?s=180"> <!--Icon-->
<!--Import-->
<link href="https://fonts.googleapis.com/css?family=Ubuntu+Mono%7CUbuntu:300,400,500,700&display=swap" rel="stylesheet"> <!--Google Fonts-->
<script src="https://twemoji.maxcdn.com/v/latest/twemoji.min.js" crossorigin="anonymous"></script> <!--Twemoji-->
<script src="https://cdn.jsdelivr.net/npm/luxon@1.17.2/build/global/luxon.min.js" crossorigin="anonymous"></script> <!--Luxon-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/pace/1.0.2/pace.min.js" crossorigin="anonymous"></script> <!--PACE-->
<script src="https://cdn.jsdelivr.net/npm/flying-pages@2.0.6/flying-pages.min.js"></script> <!--Flying Pages-->
<link rel="stylesheet" href="style.css"> <!--style.css-->
<script src="script.js"></script> <!--script.js-->
</head>
<body>
<div id="header">
<h1>Jelle</h1>
</div>
<div id="about">
<h2>Who am I?</h2>
<p>Hi, I'm Jelle, pleased to meet you! I'm a developer, designer and learner. Passionate and intrigued by technology, I set out to take the plunge into the world of computer code and never looked back.</p>
<table>
<tr>
<th>Pronouns</th>
<td>♂️ he/him</td>
</tr>
<tr>
<th>Languages</th>
<td>🇳🇱 (native), 🇬🇧 (near-native) and 🇩🇪 (intermediate)</td>
</tr>
<tr>
<th>Birthday</th>
<td>May 18<sup>th</sup></td>
</tr>
<tr>
<th>Local time</th>
<td><noscript>Central European Time</noscript><script>if (typeof localTime === "undefined") {document.write("Central European Time")} else {document.write(localTime)}</script></td>
</tr>
</table>
</div>
<div id="github">
<h2>GitHub activity</h2>
<p>GitHub is a web-based hosting service for Git, a version control system tracking changes in computer files and coordinating work on those files among multiple people. Because of this, it is a great service to use for projects involving computer code.</p>
<div><img src="https://ghchart.rshah.org/149dcc/jelle619" alt="Jelle's GitHub chart"></div>
<p>The chart above displays recent GitHub activity consiting of changes or updates made to any repository. The darker a square's shade, the more changes or updates were registered that day.</p>
<a href="https://github.com/jelle619" target="_blank">View GitHub profile</a>
</div>
<div id="contact">
<h2>Contact me</h2>
<p>Need to speak to me? Feel free to use the form below, I don't bite! 🐲</p>
<script>var locale=navigator.language||navigator.userLanguage;var dutchLocale=locale.includes("nl");var germanLocale=locale.includes("de");if(dutchLocale==true){document.write("<p>🇳🇱 Het is ook mogelijk contact op te nemen in het Nederlands.</p>")}else if(germanLocale==true){document.write("<p>🇩🇪 Es ist auch möglich, mich auf Deutsch zu kontaktieren.</p>")}</script>
<form name="contact" action="https://formsubmit.co/b7dc65bbbd8fb1fa3f6f796b4d0740a7" method="POST">
<fieldset>
<legend>Your information</legend>
Name<br>
<input type="text" name="name" placeholder="How would you like to be addressed?" required><br>
E-mail address<br>
<input type="email" name="email" placeholder="Where should I send my response to?" required>
</fieldset>
<br>
<fieldset>
<legend>Your message</legend>
Subject<br>
<input type="text" name="subject" placeholder="What is your message about?" required><br>
Message<br>
<textarea name="message" placeholder="What would you like to send me, nitty-gritty details included?" rows="4" required></textarea>
</fieldset>
<p>By submitting this form, you agree to the privacy policy of <a href="https://formsubmit.co/privacy.pdf" target="_blank">FormSubmit</a>. The info you send through this form may be kept for an indefinite time, and can deleted upon request. Please refrain from submitting any personal information.</p>
<input type="submit" value="Submit">
</form>
</div>
<div id="footer">
<footer>
<p>Coded with ❤️ in Europe</p>
<div><img src="https://img.shields.io/github/languages/code-size/jelle619/jellezwie.rs?color=149dcc&style=flat-square" alt="The size of the code used for this site"><img src="https://img.shields.io/github/repo-size/jelle619/jellezwie.rs?color=149dcc&style=flat-square" alt="The size of this site's repository"><img src="https://img.shields.io/github/languages/count/jelle619/jellezwie.rs?color=149dcc&style=flat-square" alt="The amount of languages the site's code uses"><img src="https://img.shields.io/github/last-commit/jelle619/jellezwie.rs?color=149dcc&style=flat-square" alt="Last commit made to this site"></div>
</footer>
</div>
</body>
</html>