-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (46 loc) · 2.66 KB
/
index.html
File metadata and controls
46 lines (46 loc) · 2.66 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
<!DOCTYPE html>
<html>
<head>
<!-- Below, this is how our browser reads our file. -->
<meta charset="utf-8">
<title>My First Webpage</title>
<!-- Here we are linking our stylesheet and our font choice -->
<link rel="stylesheet" href="./styles.css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300" rel="stylesheet">
</head>
<!-- The body is where everything rendered on our page is hosted. -->
<body>
<header>
<h1>Desert Living Developer</h1>
<nav class="navbar">
<ul>
<li><a href="https://www.google.com">Google</a></li>
<li><a href="https://www.linkedin.com/in/tsmit291">LinkedIn</a></li>
<li>GitHub</li>
</ul>
</nav>
</header>
<section class="about-me">
<h2>All About Me</h2>
<div>
<p><b>Where I'm from: </b>Texas-born, North Carolina-raised, (a brief stint in Denver where I attended Galvanize), and currently living here!</p>
<p><b>Fun Facts:</b> I'm left handed, I love to clean, I enjoy cycling and yoga, and I will pet every dog I ever meet. Oh, and I am the brigade captain for Code for Phoenix.</p>
</div>
</section>
<section class="about-me">
<h2>All About Me (at work)</h2>
<div>
<p>I work for Allstate Insurance in a startup-like department called CompoZed Labs. There are roughly 35 developers, designers and product managers in our lab- and they are all amazing! We are an XP shop, which means we practice Extreme Programming (test-driven-development, pair-programming and the agile methodology). The current product team I am on writes in Golang and Javascript.</p>
</div>
</section>
<section class="inspiration">
<h2>What Got Me Developing</h2>
<p>My first job was the Marketing Director for a local print publication in Charlotte, NC. After being exhausted from 60+ hour weeks and sick of planning events, I transitioned to a Hospitality company where I was responsible for building mobile apps for corporate conferences and then traveling onsite to manage the use of the apps. I LOVED traveling to fancy hotels and working with clients, but what I was really passionate about was learning how the apps we built with templates <i>really</i> worked. I begged my boss to let me code, and eventually, he let me manage our client's wordpress landing pages. After a few tutorials and joining a civic tech group called Code for Charlotte, I was hooked- and told my parents I was going to apply to Galvanize's full stack program in Denver.</p>
</section>
<section class="image">
<div class="image">
<img src="lewis.jpg">
</div>
</section>
</body>
</html>