-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (53 loc) · 2.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tom Elliot</title>
<link href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css" rel="stylesheet">
<!-- Panelbear Analytics - We respect your privacy -->
<script async src="https://cdn.panelbear.com/analytics.js?site=ETp4pM08GpO"></script>
<script>
window.panelbear = window.panelbear || function() { (window.panelbear.q = window.panelbear.q || []).push(arguments); };
panelbear('config', { site: 'ETp4pM08GpO' });
</script>
</head>
<body>
<main class=" container-2xl m-auto grid xl:grid-cols-2 gap-0">
<div class="md:mr-5"><img class="xl:h-screen" src="./img/lake.jpg" alt="Lake"></div>
<div class="pt-10 mt-5 sm:mt-0 sm:w-7/12 sm:mx-auto xl:ml-5 xl:w-11/12 overflow-x-auto h-screen max-h-4/5">
<div class="mx-auto w-11/12 flex justify-between lg:w-8/12 lg:mr-auto xl:w-11/12 xl:py-2">
<div class="flex items-center">
<div class="mr-5"><img class="w-20 shadow-xl rounded-full md:w-32" src="./img/headshot.png"
alt="Headshot"></div>
<h1 class="text-4xl mr-5 md:text-6xl">Tom Elliot</h1>
</div>
<div class="flex items-center">
<a href="mailto:hello@tomelliot.net">
<img class="w-5 md:w-8 mx-2"
src="./img/mail.png" alt="email"></a>
<a href="https://www.twitter.com/iamtomelliot/">
<img class="w-5 md:w-8 mx-2"
src="./img/twitter.png" alt="Twitter">
</a>
</div>
</div>
<aside class="mx-2 mt-10">
<ul class="flex flex-col w-11/12 mx-auto xl:11/12 xl:mx-5 xl:text-xl">
<li class="my-5 p-2 pb-3 xl:my-3">
<a href="https://www.securepdfedit.co?ref=tomelliot.net" target="_blank">securepdfedit.co</a> - the fastest way to fill out a static PDF.
</li>
<li class="my-5 p-2 pb-3 xl:my-3">
<a href="https://www.schedules.pro?ref=tomelliot.net" target="_blank">schedules.pro</a> - the fastest way to find overlap across timezones.
</li>
<li class="my-5 p-2 pb-3 xl:my-3">
<a href="http://207.154.195.91:3000/?ref=tomelliot.net" target="_blank">Berlin Foreclosed Properties</a> - a map to show properties in Berlin that are for sale, after foreclosure.
</li>
</ul>
</aside>
</div>
</div>
</main>
</body>
</html>