-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
146 lines (135 loc) · 5.27 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
<!DOCTYPE HTML>
<!--
Editorial by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
<title>Riley Jamieson - Portfolio</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="assets/css/main.css" />
<link rel="icon" type="image/x-icon" href="/images/favicon.ico">
<script src="jquery-3.6.4.min.js"></script>
<script src="https://web3forms.com/client/script.js" async defer></script>
<meta property="og:title" content="Riley Jamieson - Portfolio" />
<meta property="og:image" content="/images/social_preview.png"/>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-J4LBC19164"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-J4LBC19164');
</script>
</head>
<body class="is-preload">
<!-- Wrapper -->
<div id="wrapper">
<!-- Main -->
<div id="main">
<div class="inner">
<div id="load-header"></div>
<section id="banner">
<div class="content">
<header>
<h1>Hello! and welcome to my portfolio</h1>
</header>
<p>I'm a fresh college graduate looking to expand my experiences with Software Development.
I have experience developing custom solutions utilizing Zoho's cloud software suite, along with custom script solutions,
and a repertoire of more conventional languages such as (In order of expertise):
<ol>
<li>
Python
</li>
<li>
Fullstack web development (HTML, CSS, JS, PHP)
</li>
<li>
C#
</li>
</ol>
</p>
<ul class="actions">
<li><a href="projects.html" class="button big">Learn More</a></li>
</ul>
</div>
<span class="image object">
<img src="images/pic10.jpg" alt="" />
</span>
</section>
<section>
<header class="major">
<h2>Skills and languages</h2>
</header>
<div class="features">
<article>
<span class="icon fa-gem"></span>
<div class="content">
<h3>Custom <a href="https://www.zoho.com/creator/">Creator</a> solutions</h3>
<p>I've made Creator applications that utilize in-app features, as well as custom solutions using HTML/CSS inject and JS scripts.
If you're interested in reading more about my experience with Zoho,
you can view my <a href="projects.html">projects</a> where I discuss the solutions I've made using Zoho web applications. As well as some personal projects</p>
</div>
</article>
<article>
<span class="icon solid fa-paper-plane"></span>
<div class="content">
<h3>Database management/theory</h3>
<p>2+ years experience in managing & developing atop multiple existing databases, utilizing SQL and Zoho Analytics</p>
</div>
</article>
<article>
<span class="icon solid fa-rocket"></span>
<div class="content">
<h3>Python based webscrappers & Pygame</h3>
<p>Experience developing webscrappers using <a href="https://beautiful-soup-4.readthedocs.io/en/latest/">Beautiful Soup</a> and formatting data with <a href="https://pandas.pydata.org/">Pandas.</a>
I've also created Pygames for college assignments, for a bit of fun 😺</p>
</div>
</article>
<article>
<span class="icon solid fa-signal"></span>
<div class="content">
<h3>Full stack web development</h3>
<p>2+ creating webpages using IDE's such as Wix, Zoho Sites, and Zoho Commerce.</p>
</div>
</article>
</div>
</section>
</div>
</div>
<!-- Sidebar -->
<div id="sidebar">
<div class="inner">
<!-- Menu -->
<div id="load-menu"></div>
<!-- Recent blogs -->
<div id="load-recent-blogs"></div>
<!-- Contact Form -->
<section>
<header class="major">
<h2>Get in touch</h2>
</header>
<p>Please use the form below if you wish to get in contact with me!</p>
<div id="load-form"></div>
</section>
<!-- Footer -->
<div id="load-footer"></div>
</div>
</div>
</div>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
<script>
$("#load-header").load("elements.html #header");
$("#load-menu").load("elements.html #menu");
$("#load-footer").load("elements.html #footer");
$("#load-form").load("elements.html #contactForm");
$("#load-recent-blogs").load("elements.html #recent-blogs");
</script>
</body>
</html>