-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (69 loc) · 1.98 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Max Pelot</title>
</head>
<body>
<nav>
<a href="contact.html"><p>Contact Max</p></a>
</nav>
<section class="title">
<h1>Max Pelot</h1>
<h2>Full-Stack Developer</h2>
</section>
<section class="about">
<div id="imageContainer">
<img id="me" src="images/me.jpeg" alt="Picture of Max" />
</div>
<h2>Hi!</h2>
<p>
I am a computer science major at the University of Georgia. In my free
time, I enjoy playing tennis and developing video games.
</p>
<hr />
<h2>About Max</h2>
<div class="three-col">
<div class="card">
<img src="images/java.jpg" alt="java code" />
<h3>Languages</h3>
<ul>
<li>Java</li>
<li>C++</li>
<li>C#</li>
<li>HTML</li>
<li>CSS</li>
<li>Javascript</li>
</ul>
</div>
<div class="card">
<img src="images/leader.jpg" alt="leader" />
<h3>Leadership and Expirience</h3>
<dl>
<dt>August 2023</dt>
<dd><a href="https://gokickball.com">GO Kickball Employee</a></dd>
<dt>July 2023</dt>
<dd>UGA Hacks Organizer</dd>
<dt>Summer 2022</dt>
<dd>Home Depot Cashier</dd>
</dl>
</div>
<div class="card">
<img src="images/skills.png" alt="" />
<h3>Skills</h3>
<dl>
<dt>Problem Solving</dt>
<dd>⭐⭐⭐⭐⭐</dd>
<dt>Web Development</dt>
<dd>⭐⭐⭐⭐</dd>
<dt>Leadership</dt>
<dd>⭐⭐⭐⭐⭐</dd>
</dl>
</div>
</div>
</section>
<footer><a href="contact.html">© Max Pelot</a></footer>
</body>
</html>