summaryrefslogtreecommitdiff
path: root/about.html
blob: 0e33dd2d4170f20a20620c9e834c00f34216aa0d (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
<!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"
		width="400"
	>

	<p>
		Hello! My name is Christian Hodgden. I am currently working a Data Analyst for an Industrial Engineering department in a distribution environment. I am boadening my skillset by learning about other programming languages and practical computer science concepts including networking, database technology, and website development. I like working on database and reporting projects and I am very interested in gaining experience with other database and reporting technologies. 
	</p>
	<p>
		Right now I am teaching myself with YouTube tutorials and taking certifications as I can. I am also configuring my own linux server to host my own applications. I have some projects on my GitHub that are mostly for learning and refernce. 
	</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>