-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (59 loc) · 2.8 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Scott Austin's Profile</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css?family=Muli%7CRoboto:400,300,500,700,900" rel="stylesheet"></head>
<body>
<nav class="main-nav">
<ul class="nav">
<li class="name"><a href="index.html">Scott Austin</a></li>
<li><a href="https://jadepuma.com" target="_blank">JadePuma</a></li>
<li><a href="chihuahaus.html">Chihuahuas</a></li>
<li><a href="bucket-list.html">Bucket List</a></li>
</ul>
</nav>
<header>
<img src="images/Scott-Circle_medium.jpg" alt="The Dashing Scott Austin" class="profile-image">
<div class="banner-text">
<h1 class="name">Hello, I'm Scott</h1>
<p class="location">I live in San Diego, California</p>
</div>
</header>
<main class="flex">
<article class="card">
<h2>My Background</h2>
<p>I'm the owner of JadePuma, a one-person agency focussed on building Shopify stores for online merchants. I've got decade's of experience in a wide variety of jobs at a wide variety of companies.</p>
<p>On the personal side, I like to think that I lead a simple life in beautiful Pacific Beach, San Diego. I spend my time with too many Chihuahuas and enjoy coaching kids in roller derby. My current new passion is my electric skateboard.</p>
</article>
<article class="card">
<h2>My Goals</h2>
<p>My goals in the TechDegree programs are twofold:</p>
<ol>
<li>To fill in the gaps of my current knowledge as everything is self-taught.</li>
<li>To gain new knowledge in areas that I'm not well-versed. This includes JS and Node.</li>
</ol>
<h2>The Outcome</h2>
<p>The outcome from this endevour will be that I'm going to build my first Shopify app. If all goels well, I'll be publishing it in the Shopify App Marketplace</p>
</article>
<article class="card">
<h2>Contact</h2>
<p>I'm usually slow to respond, but here's how to get in touch:</p>
<ul>
<li>📧 <a href="mailto:scott@jadepuma.com">scott@jadepuma.com</a></li>
<li>☎ <a href="tel:+16193561465">619 738-1001</a></li>
</ul>
</article>
</main>
<footer>
<ul>
<li><a href="https://twitter.com/svaustin" class="social twitter">Twitter</a></li>
<li><a href="https://www.linkedin.com/in/svaustin/" class="social linkedin">LinkedIn</a></li>
<li><a href="https://github.com/svaustin66" class="social github">Github</a></li>
</ul>
<p class="copyright">© 2021, Scott Austin</p>
</footer>
</body>
</html>