-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·102 lines (99 loc) · 5.22 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
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
100
101
102
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://use.fontawesome.com/6e47fdd73a.js"></script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dylan Thorwaldson | Portfolio</title>
<link href="https://fonts.googleapis.com/css?family=Titillium+Web" rel="stylesheet">
<link rel="stylesheet" href="css/styles.css">
<link rel="icon" href="./static/favicon.ico" />
</head>
<body>
<header id="about">
<a href="DylanThorwaldsonResume.pdf" download class="btn download">Download Resume</a>
<nav>
<a href="#about">About</a>
<a href="#projects">Projects</a>
<a href="#contact">Contact</a>
</nav>
<div class="content-wrap">
<img class="profile-img col-narrow" src="./images/dylan.jpg" alt="Dylan Thorwaldson">
<div class="col-wide">
<h1>Dylan Thorwaldson</h1>
<h2>Web Developer</h2>
<p>I am a technologist in Austin, TX with a special affinity for front end development. I particularly enjoy using <a id="text-link" href="https://reactjs.org/" target="_blank">React</a>. Check out some of my work below, and please don't hesitate to contact me. I would love to connect! Also, feel free to click the red button below to grab a copy of my resume.</p>
</div>
</div>
</header>
<main>
<section id="projects" class="projects">
<div class="content-wrap">
<h2>Projects</h2>
<a href="https://www.tontinesgames.com/" target="_blank">
<div class="project grow">
<h3>Tontines Marketing Website</h3>
<img width="200rem" src="./images/tontines.png" alt="tontines" />
<p>Marketing website built with Strikingly and Shopify to drive traffic/downloads for Tontines mobile game.</p>
</div>
</a>
<a href="http://www.sugarbot.com/" target="_blank">
<div class="project grow">
<h3>Sugarbot Marketing Website</h3>
<img width="200rem" src="./images/sugarbot.png" alt="sugarbot" />
<p>Marketing website built with Angular frontend to promote Austin startup Sugarbot.</p>
</div>
</a>
<a href="http://sugartrek.com/" target="_blank">
<div class="project grow">
<h3>Sugartrek Marketing Website</h3>
<img width="200rem" src="./images/sugartrek.png" alt="sugartrek" />
<p>Marketing website built Angular and Bootstrap frontend to drive traffic for Sugartrek mobile game.</p>
</div>
</a>
<a href="https://react-redux-movies.surge.sh/" target="_blank">
<div class="project grow">
<h3>React + Redux Movies</h3>
<img width="200rem" src="./images/react-redux-movies.png" alt="react-redux-movies" />
<p>Movie searching application built with React and Redux utilizing the OMDB api with a Node/Mongodb backend.</p>
</div>
</a>
<a href="https://wellminder.herokuapp.com" target="_blank">
<div class="project grow">
<h3>Wellminder</h3>
<img width="200rem" src="./images/wellminder.png" alt="wellminder" />
<p>Full stack, responsive web application built with React and D3 that tracks and "gamifies" wellness, encouraging users toward positive health choices.</p>
</div>
</a>
<a href="https://recipeers.herokuapp.com" target="_blank">
<div class="project grow">
<h3>Recipeers</h3>
<img width="200rem" src="./images/recipeers.png" alt="recipeers" />
<p>Full Stack Social Media platform for creating and sharing recipes. Group project built with Node, PostgreSQL, and Express backend.</p>
</div>
<a/>
<a href="https://dtthor.github.io/q1-project/" target="_blank">
<div class="project grow">
<h3>Avalanche</h3>
<img width="200rem" src="./images/avalanche.png" alt="avalanche" />
<p>HTML5 canvas game inspired by the calculator game of the same name. Individual project built for Galvanize Quarter 1.</p>
</div>
</a>
</div>
</section>
</main>
<footer id="contact">
<div class="content-wrap">
<h3 id="footer-header">Contact</h3>
<div class="contact-info">
<a href="mailto:d.t.thorwaldson@gmail.com"><i class="grow-icon fa fa-envelope-o fa-2x" aria-hidden="true"></i></a>
<a href="https://twitter.com/dtthor" target="_blank"><i class="grow-icon fa fa-twitter fa-2x" aria-hidden="true"></i><span class="sr-only">Twitter</span></a>
<a href="https://www.linkedin.com/in/dtthor/" target="_blank"><i class="grow-icon fa fa-linkedin fa-2x" aria-hidden="true"></i><span class="sr-only">LinkedIn</span></a>
<a href="https://medium.com/@d.t.thorwaldson" target="_blank"><i class="grow-icon fa fa-medium fa-2x" aria-hidden="true"></i><span class="sr-only">Medium</span></a>
<a href="https://github.com/dtthor" target="_blank"><i class="grow-icon fa fa-github fa-2x" aria-hidden="true"></i><span class="sr-only">GitHub</span></a>
</div>
<p>Coded by Dylan Thorwaldson, fueled by <i class="fa fa-heart-o" aria-hidden="true"></i> and <i class="fa fa-coffee" aria-hidden="true"></i></p>
</div>
</footer>
</body>
</html>