-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
147 lines (132 loc) · 5.34 KB
/
index.html
File metadata and controls
147 lines (132 loc) · 5.34 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Calvin Wetzel's Portfolio Website</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Oxygen+Mono&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav>
<ul class="navlist">
<li>
<h1>
<a href="index.html">
<span class="fa-solid fa-computer"> </span>
<span> Calvin Wetzel </span>
</a>
</h1>
</li>
<li> <a href="#projects">Projects </a> </li>
<li> <a href="about.html">About </a> </li>
<li> <a href="#contact">Contact </a> </li>
<li>
<a href="https://www.linkedin.com/in/calvinwetzel/" target="_blank">
<span class="fa-brands fa-linkedin" aria-hidden="true"></span> <span class="sr-only">LinkedIn </span> </a>
</li>
<li> <a href="https://github.com/czhurdlespeed" target="_blank"> <span class="fa-brands fa-github"
aria-hidden="true"> </span><span class="sr-only"> Github </span> </a></li>
<! --- use dropbox or google drive link for Resume -->
<li> <a href="https://drive.google.com/file/d/1_aclh52bohEDvCtdef0NBL0uLaAawJFZ/view?usp=drive_link"
target="_blank" class="button">Resume </a> </li>
</ul>
</nav>
<section id="intro">
<p class="name"> Hi, my name is <span>Calvin Wetzel.</span></p>
<h2>I develop AI technologies.</h2>
<p>I'm a Computer Science PhD student at the University of Tennessee specializing in Artificial Intelligence (AI),
Machine Learning (ML), Deep Learning (DL), and Computer Vision (CV). </p>
<p>Currently, I'm working with Oak Ridge National Lab's <a href="https://www.ornl.gov/facility/mdf">Manufacturing
Demonstration Facility</a> on AI and CV solutions for additive manufacturing techniques.</p>
</section>
<div class="gradient"></div>
<div class="projectbackground">
<section id="projects">
<h2>Project Highlights</h2>
<article>
<div class="text">
<h4>Game Project</h4>
<h3>Wordle</h3>
<p class="blackbox">In this project, I recreated the game, Wordle. I created the html, css, and used
Javascript to send and receive API requests to check if the word is valid or correct. For more
details and project exploration, click <a href="ComintroWebProjects/Wordle/index.html">here</a>.</p>
<h4>Technologies used include:</h4>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
</ul>
</div>
<img src="img/Wordle.png" alt="Wordle Game" />
</article>
<article class="reverse">
<div class="text">
<h4>Calculator Project</h4>
<h3>iOS Calculator</h3>
<p class="blackbox">In this project, I created a web based iOS calculator that can handle integer operations.
For more
details and project exploration, click <a href="ComintroWebProjects/Calculator/index.html">here</a>.</p>
<h4>Technologies used include:</h4>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
</ul>
</div>
<img src="img/Calculator.png" alt="iOS Calculator" />
</article>
<article>
<div class="text">
<h4>Checkout Page</h4>
<h3>Front End Masters Coffee Shop Page</h3>
<p class="blackbox">In this project, I created a coffee shop checkout page with input fields and a CSS
animation. For more
details the project exploration, click <a href="ComintroWebProjects/CoffeeCheckout/index.html">here</a>.</p>
<h4>Technologies used include:</h4>
<ul>
<li>HTML</li>
<li>CSS</li>
</ul>
</div>
<img src="img/CoffeeCheckout.png" alt="Coffee Shop Landing Page" />
</article>
</section>
</div>
<div class="gradient"></div>
<div class="section-matteblue">
<section id="contact">
<h2>Contact me</h2>
<p>I'm always interested in hearing about AI technologies and opportunities.</p>
<p><a href="mailto:jwetzel2@vols.utk.edu" class="contactbutton">Email me</a></p>
</section>
</div>
<div class="gradient"></div>
<footer>
<h2> Calvin Wetzel · PhD Student </h2>
<ul>
<li>
<a href="https://www.linkedin.com/in/calvinwetzel/" target="_blank">
<span class="fab fa-linkedin" aria-hidden="true"></span> <span class="sr-only">LinkedIn </span>
</a>
</li>
<li>
<a href="https://github.com/czhurdlespeed" target="_blank"> <span class="fab fa-github"
aria-hidden="true"></span>
<span class="sr-only">Github </span>
</a>
</li>
<li>
<a href="mailto:jwetzel2@vols.utk.edu">
<span class="fa fa-envelope" aria-hidden="true"></span>
<span class="sr-only">Email</span>
</a>
</li>
</ul>
<p> <small> © 2024 Calvin Wetzel. All rights reserved.</small></p>
</footer>
</body>
</html>