-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (83 loc) · 4.77 KB
/
index.html
File metadata and controls
88 lines (83 loc) · 4.77 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
<!doctype html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Gavyn Leavitt - Portfolio</title>
<!-- Stylesheets -->
<link rel="stylesheet" href="font-awesome-4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css?family=Bevan|Squada+One" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<!-- Scripts -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="js/nav.js?v=12"></script>
</head>
<body>
<a name="top" class="anchor"></a>
<nav>
<a href="#top" onclick="myScroll(this)">Gavyn Leavitt - Web Developer</a>
<ul id="nav-menu">
<li><a href="#about" onclick="myScroll(this)">About Me</a></li>
<li><a href="#work" onclick="myScroll(this)">My Work</a></li>
</ul>
<i class="fa fa-bars nav-toggle" onclick="navToggle()"></i>
</nav>
<div class="content">
<section class="about">
<a name="about" class="anchor"></a>
<h2>About Me</h2>
<div class="profile-pic"></div>
<p>
Hello folks! My name is Gavyn. I currently live in Indianapolis, Indiana. I am a mostly self-taught developer with over four years of development experience. I started learning to code with Codecademy in January of 2013. Since then I've filled my days with hundreds of books, articles, video's, and practice projects. Today I still strive to be the best developer I can be and I continue to learn new things every day.
</p>
<h3>What I Do</h3>
<p>
My main focus is Web Development. I tend to build web apps from scratch using HTML5, CSS3, Javascript/jQuery, PHP, MySQL, and Laravel. I also have experience with Wordpress, Drupal, and AngularJS.
</p>
</section>
<section class="work">
<a name="work" class="anchor"></a>
<h2>My Work</h2>
<div class="work-piece" id="pixelshades">
<a href="http://thepixelshades.com" target="_blank">
<div class="work-description">
<h3>PixelShades Website</h3>
<p>Role - Designer/Developer</p>
<p>A website I built for a long running personal project of mine. The website back-end I designed is capable of full blog-like functionality, and it handles podcast files with ease. It may not look like much but it's got it where it counts!</p>
</div>
</a>
</div>
<div class="work-piece" id="fcc_indy">
<a href="http://freecodecampindy.com/campers.html" target="_blank">
<div class="work-description">
<h3>FreeCodeCamp Indy Website</h3>
<p>Role - Developer</p>
<p>The website for the FreeCodeCamp Indy group. My work consists of the "Campers" page as well has helping with the overall code design.</p>
</div>
</a>
</div>
<div class="work-piece" id="larrys">
<a href="http://larrystreefarm.com" target="_blank">
<div class="work-description">
<h3>Larry's Tree Farm Website</h3>
<p>Role - Designer/Developer</p>
<p>One of first websites I did after taking web development in college. At the time I thought percentages were the end-all be-all of responsiveness. I've come a long way since and I hope to go back and redesign this one.</p>
</div>
</a>
</div>
</section>
<section class="contact">
<a name="contact" class="anchor"></a>
</section>
</div>
<footer>
<p>Gavyn Leavitt - 2017</p>
<ul>
<li><a href="https://github.com/Firearrow5235" target="_blank"><i class="fa fa-github"></i></a></li>
<li><a href="https://www.linkedin.com/in/gavyn-leavitt-459807126/" target="_blank"><i class="fa fa-linkedin"></i></a></li>
<li><a href="http://stackoverflow.com/users/3516464/firearrow5235" target="_blank"><i class="fa fa-stack-overflow"></i></a></li>
</ul>
</footer>
</body>
</html>