-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
163 lines (140 loc) · 5.65 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<!DOCTYPE html>
<html>
<head>
<meta name="google-site-verification" content="Uk9lcQs8mGbj0mJo4NMKQ-4l0geQ0J9V_bF08vS7RpA" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<link rel="alternate" hreflang="en" href="http://camerongale.com/" />
<meta name="Description" content="Cameron Gale's portfolio site">
<meta charset="utf-8">
<link rel="shortcut icon" href="img-personalSite/Vectorfavicon.png" />
<link rel="stylesheet" href="./styling/reset.css" media="screen" title="no title">
<link rel="stylesheet" href="./styling/main.css" media="screen" title="no title">
<link rel="stylesheet" href="./styling/mobile.css" media="screen" title="no title">
<title>Cameron Gale</title>
</head>
<body>
<section class="nav-bar">
<p id="projects">
Projects
</p>
<p id="contact">
Contact
</p>
<p id="resume">
Resume
</p>
</section>
<section class="landing">
<!-- <h3>"Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live." - Martin Golding</h3> -->
<!-- -->
<div class="box">
<div class="typed-lines"></div>
<div class="typing">
<div class="line element"></div>
</div>
</div>
</section>
<section class="projects-container" id="projectsDiv">
<section class="projects-title">
Projects
</section>
<section class="space-between top-triangle">
</section>
<section class="karsync-project">
<img src="img-personalSite/Karsync.png" alt="preview of karysnc app" />
<div class="text-container">
<a href="http://karsync.ninja"><h2>KarSync</h2></a>
<p>
URL: <a href="http://karsync.ninja">karsync.ninja</a>
</p>
<p>
A project where I got to work with a group for a local start up. They want to put on board diagnostic readers in cars, and create applications around those. We were asked to make the web portal for a mechanic to see all the data coming from his clients. KarSync was already using MySQL, so I had the opportunity to learn it. I was responsible for the Dashboard, Maintenance view, and the back-end.
</p>
<div class="tech-container">
<div class="tech">
SQL
</div>
<div class="tech">
Angular
</div>
<div class="tech">
Node
</div>
<div class="tech">
Express
</div>
<div class="tech">
HTML/CSS3
</div>
<div class="tech">
JQuery
</div>
</div>
</div>
</section>
<section class="space-between middle">
</section>
<section class="space-trader">
<div class="text-container">
<a href="http://spacetrader.ninja"><h2>Space Trader</h2><a>
<p>
URL: <a href="http://spacetrader.ninja">spacetrader.ninja</a>
</p>
<p>
My first attempt at remaking Space Trader. Space Trader was a text based rpg for the palm pilot. It's official site is <a href="http://www.spronck.net/spacetrader/STFrames.html">spronck.net/spacetrader</a>. My first full stack app. I wanted to recreate the feel of playing it on my palm pilot. So I used <a href="http://ionicframework.com/">Ionic</a>. Ionic is a framework that lets you turn your web apps into mobile apps.
</p>
<div class="tech-container">
<div class="tech">
MongoDB
</div>
<div class="tech">
Angular
</div>
<div class="tech">
Node
</div>
<div class="tech">
Express
</div>
<div class="tech">
HTML/CSS3
</div>
<div class="tech">
Ionic
</div>
</div>
</div>
<img src="img-personalSite/GroupspaceTraderScreen.png" alt="space trader preview" />
</section>
<section class="space-between bottom-triangle">
</section>
</section>
<section class="projects-title">
<p>
Contact
</p>
</section>
<section class="contact" id="contactDiv">
<div class="profile-container">
<div class="me"></div>
<div class="logos-container">
<a href="https://github.com/CameronEldonGale"><div class="logo github"></div></a>
<a href="https://www.linkedin.com/in/cameron-gale"><div class="logo linkedin"></div></a>
</div>
</div>
<section class="message-container">
<div class="logo-email-container">
<div class="logo email" id="email">
</div>
<textarea name="name" id="body" rows="8" cols="40" placeholder="Message"></textarea>
</div>
<!-- <input type="text" id="name" name="name" placeholder="Name"> -->
<button id="send" type="button" name="button"> SEND</button>
</section>
</section>
<script src="js/justVanilla.js" charset="utf-8"></script>
<script src="https://code.jquery.com/jquery-3.1.1.min.js" integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8=" crossorigin="anonymous"></script>
<script src="bower_components/typed.js/dist/typed.min.js" charset="utf-8"></script>
<script src="js/typing.js"></script>
</body>
</html>