-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (65 loc) · 3.18 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
<!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">
<link rel="icon" href="../../favicon.ico">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous"> <link rel="stylesheet" href="style.css">
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-52355908-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-52355908-1');
</script>
<title>Christian Hatch</title>
</head>
<body>
<div class="container">
<nav class="navbar navbar-expand-lg navbar-light mt-2 mb-4">
<div class="container-fluid">
<div class="collapse navbar-collapse d-flex" id="navbarSupportedContent">
<ul class="nav nav-pills mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="apps.html">Apps</a>
</li>
<li class="nav-item">
<a class="nav-link" href="opensource.html">Open Source</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://chatch.me/">Photograhy</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</ul>
</div>
<a class="navbar-brand text-muted fw-bolder fs-4" href="index.html">Christian Hatch</a>
</div>
</nav>
<div class="d-flex justify-content-center">
<div class="rounded-3 bg-gray p-4 fs-5 fw-normal" style="max-width: 700px">
<div class="profile-image">
<img src="img/chatch.jpg" alt="Christian Hatch Headshot Photo">
</div>
<h2>Hey there stranger</h2>
<p class="lead">It's very nice to meet you 😊</p>
<p> I'm an iOS/Android/full stack web developer and human being. I make <a href="apps.html">apps</a>,<a href="opensource.html"> open source</a> goodies, and I'm passionate about making clean, simple, and trustworthy products.</p>
<p>When I'm not building software, I like to take <a href="https://chatch.me/">photos</a>.</p>
<p>Welcome to my website! I made it by hand, with love and care, just for you.</p>
<p>❤️</p>
<p>Christian</p>
</div>
</div>
<footer class="footer text-center">
<p>© Christian Hatch <span id="year"></span></p>
</footer>
</div>
<script>document.getElementById("year").innerHTML = new Date().getFullYear();</script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/js/bootstrap.min.js" integrity="sha384-Atwg2Pkwv9vp0ygtn1JAojH0nYbwNJLPhwyoVbhoPwBhjQPR5VtM2+xf0Uwh9KtT" crossorigin="anonymous"></script>
</body>
</html>