-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwhat.html
More file actions
90 lines (74 loc) · 2.58 KB
/
what.html
File metadata and controls
90 lines (74 loc) · 2.58 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
89
90
<!DOCTYPE = html>
<html>
<head>
<script defer src="/static/fontawesome/fa-v4-shim.js"></script>
<script defer src="https://use.fontawesome.com/releases/v5.0.8/js/all.js" integrity="sha384-SlE991lGASHoBfWbelyBPLsUlwY1GwNDJo3jSJO04KZ33K2bwfV9YBauFfnzvynJ" crossorigin="anonymous"></script>
<link href="styles/Hover-master/css/hover.css" rel="stylesheet" media="all">
<link href="styles/style.css" rel="stylesheet" type="text/css">
<script src="scripts/scripts.js"></script>
<title>Chris Page - Portfolio</title>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-124598778-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-124598778-1');
</script>
</head>
<body>
<!--Header-->
<div class="header">
<h1><a class="hvr-fade" href="index.html">Chris Page</a></h1>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Me</a></li>
<li><a href="what.html">What I Do</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
<div class="nav-arrow na-back">
<a href="about.html"><i class="arrow fa fa-arrow-circle-left"></i></a>
<h2>About Me</h2>
</div>
<div class="nav-arrow na-forward">
<a href="projects.html"><i class="arrow fa fa-arrow-circle-right"></i></a>
<h2>Projects</h2>
</div>
<!--What Section-->
<div class="section" id="What">
<h1>What I Do</h1>
<h3>Although happy in my role as a Field Service Engineer, I am ready to make the jump into fulltime coding.</h3>
<h3>I have experience in the following languages:</h3>
<ul>
<li>VB.NET</li>
<li>C++/C#</li>
<li>Python</li>
<li>Swift</li>
<li>SQL</li>
<li>HTML/CSS</li>
<li>Git</li>
</ul>
<br>
<h3>In addition to coding, I am a serial tinkerer which includes but definitely isn't limited to the following:</h3>
<ul>
<li>CAD</li>
<li>3D Printing with my <a href="https://www.prusa3d.com/original-prusa-i3-mk3/" target="_blank">Prusa i3 Mk3</a></li>
<li>Arduino and general electronics</li>
</ul>
</div>
<br>
<br>
<br>
<!--Footer-->
<footer class="site-footer">
<ul>
<li>
<a href="https://github.com/pageyboy"><i class="hvr-fade social-logo fab fa-github"></i></a>
<a href="https://www.linkedin.com/in/chrispage1/"><i class="hvr-fade social-logo fab fa-linkedin"></i></a>
</li>
</ul>
</footer>
</body>
</html>