-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (60 loc) · 3.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-VMW6KH4V1R"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-VMW6KH4V1R');
</script>
<meta charset="utf-8">
<title>Lance Newman - Software Engineer</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="assets/styles/style.css">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<!-- Google fonts & icons-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200&icon_names=article,download,link,mail" />
</head>
<body>
<header>
<h1>Lance Newman</h1>
<picture>
<img id="profile-pic" src="assets/images/profile.jpg" width="256" height="256" alt="A nice picture of Lance Newman. He is a white male with short dark brown hair and a short beard. He's wearing a dark blue sweater.">
</picture>
</header>
<main>
<section id="about">
<h2>About me</h2>
<p>I'm a dad, husband, and software engineer. I've been building software since 2018 at places like IBM and Amazon. Thanks for visiting!</p>
<a class="link-button" href="assets/downloads/resume.pdf" download="lance-newman-resume.pdf">
<span class="material-symbols-outlined">download</span> Résumé
</a>
</section>
<section id="contact">
<h2>Contact me</h2>
<ul>
<li><a class="link-button" href="https://github.com/lancenewman"><span class="material-symbols-outlined">link</span> GitHub</a></li>
<!-- <li><a class="link-button" href="https://lancenewman.com/blog"><span class="material-symbols-outlined">article</span> Blog</a></li> -->
<li><a class="link-button" href="https://www.linkedin.com/in/stevenlancenewman/"><span class="material-symbols-outlined">link</span> LinkedIn</a></li>
<li><a class="link-button" href="mailto:[email protected]"><span class="material-symbols-outlined">mail</span> Email</a></li>
</ul>
</section>
<section id="projects">
<h2>Projects</h2>
<section class="project-card">
<h3><a href="projects/baby-shapes/index.html"><span class="material-symbols-outlined">link</span> Baby Shapes</a></h3>
<p>
This is an experimental project I've been working on throughout my daughter's first few months of life. I
was inspired by <a href="https://bookshop.org/p/books/hello-my-world-duopress-labs/14126713?ean=9781950500253"><span class="material-symbols-outlined">link</span> Hello, My World!</a>,
a children's book with high contrast images that supposedly aid in newborn vision development. Refresh the
page to generate new shapes!
</p>
</section>
</section>
</main>
</body>
</html>