-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
99 lines (76 loc) · 2.96 KB
/
contact.html
File metadata and controls
99 lines (76 loc) · 2.96 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Cliff Smith | Cloud Engineering | Cliffable</title>
<meta name="description"
content="Contact Cliff Smith about cloud engineering, AWS architecture and real-world projects via email, LinkedIn or GitHub.">
<meta name="robots" content="index, follow">
<link rel="canonical" href="https://cliffable.com/contact.html">
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<link rel="icon" type="image/x-icon" href="favicon/favicon.ico">
<link rel="icon" type="image/png" sizes="32x32" href="favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon/favicon-16x16.png">
<link rel="apple-touch-icon" sizes="180x180" href="favicon/apple-touch-icon.png">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-L41X6NGBMK"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-L41X6NGBMK');
</script>
</head>
<body>
<header>
<div class="container header-inner">
<div class="logo">
<a href="/">
<img src="/assets/logos/cliffable-logo-white-v2.svg" alt="Cliffable logo" height="60">
</a>
</div>
<nav class="main-nav">
<a href="/projects/">Projects</a>
<a href="/field-notes/">Field Notes</a>
<a href="/about.html">About</a>
<a href="/contact.html">Contact</a>
</nav>
</div>
</header>
<main>
<section class="hero">
<div class="container">
<h1>Contact Cliff Smith</h1>
<img src="/assets/images/cliff-smith-headshot.jpg" alt="Cliff Smith headshot" class="about-photo">
<p>
The best way to reach me is by <a href="mailto:mailcliffsmith@gmail.com">email</a>.
</p>
<p>
I’m always open to connecting about cloud engineering, AWS architecture, and real-world project work.
</p>
</div>
</section>
</main>
<footer>
<div class="container footer-content">
<div class="footer-contact">
<p class="footer-heading">Contact</p>
<div class="footer-links">
<a href="mailto:mailcliffsmith@gmail.com">Email</a>
<a href="https://www.linkedin.com/in/cliff-smith-london/" target="_blank"
rel="noopener noreferrer">LinkedIn</a>
<a href="https://github.com/cliffable" target="_blank" rel="noopener noreferrer">GitHub</a>
</div>
</div>
<div class="footer-meta">
<p>© 2026 Cliff Smith</p>
</div>
</div>
</footer>
</body>
</html>