summaryrefslogtreecommitdiff
path: root/about.html
blob: ef6094e29032144a321a41787414e0d2a7662bd4 (plain)
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
<!DOCTYPE html>
<html>

<head>
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
	<title>chrhodgden - About</title>
	<link rel="icon" type="image/svg+xml" href="img/favicon.svg">
	<link rel="stylesheet" href="style.css"/>
	<style>
		:root {
			--theme-hue: var(--about-hue);
		}
	</style>
</head>

<body>

	<div class="dark-mode-container">
		<input type="checkbox" id="--dark-theme-check">Dark Mode</input>
	</div>

	<h1>About Me</h1>
	
	<img 
		class="self-portrait"
		src="img/self_portrait.jpg" 
		alt="Self Portrait"
		height="300"
	>

	<p>
		My name is Christian Hodgden.
		I am currently a Data Analyst for an Industrial Engineering department in a distribution environment. 
		I am learning about other programming languages and very interested in Data Science. 
		I have professionially done some regression modeling within our team and I would like to expand that part of my career. 
		I am also looking to gain experience with other database and reporting technologies. 
	</p>
	<p>
		Right now I am teaching myself with YouTube tutorials and taking certifications as I can.
	</p>

	<ul>Links
		<li>GitHub <a href="https://github.com/chrhodgden" target="_blank">github.com/chrhodgden</a></li>
		<li>Email <a href="mailto:chrhodgden@gmail.com">chrhodgden@gmail.com</a></li>
		<li>Chess.com <a href="https://www.chess.com/member/tinwoodman92" target="_blank">chess.com/member/tinwoodman92</a></li>
	</ul>

	<nav class="nav-footer">
		<hr>
		<a href="index.html">Home Page</a>		
		| <a href="about.html">About Page</a>		
		| <a href="#">Top of Page</a>		
		<hr>
	</nav>
	<script src="app.js"></script>
</body>
</html>