-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmypage.html
More file actions
52 lines (52 loc) · 1.48 KB
/
mypage.html
File metadata and controls
52 lines (52 loc) · 1.48 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
<!DOCTYPE html>
<html>
<head>
<title>About Me</title>
</head>
<body>
<h1>Gerrett Pape</h1>
<p>I was born in Colorado, I like to cook and I love the snow. I am studying computer science because
I have always had a passion for programming and wanted to explore it more.</p>
<h2>My Professional Profile </h2>
<a href="https://github.com/CheesyBoy123"> Github </a>
<div>
<img src="https://static.tvtropes.org/pmwiki/pub/images/AverageMan1.jpg" alt="Cleary a picture of me" width=500px height=500px> </img>
</div>
<h3> My Favorite Projects </h3>
<div>
<table>
<tr>
<th> Project Name </th>
<th> Technologies Used </th>
</tr>
<tr>
<td> Truck Route Calculator</td>
<td> Java </td>
</tr>
<tr>
<td> Recip-EZ </td>
<td> PHP and HTML</td>
</tr>
<tr>
<td> Server Plugins </td>
<td> Java </td>
</tr>
</table>
</div>
<h3> Countries Travelled</h3>
<div>
<ol>
<li> Mexico </li>
<li> England </li>
</ol>
</div>
<h3> My Interests</h3>
<div>
<ul>
<li> Coding </li>
<li> Gaming </li>
<li> Biking </li>
</ul>
</div>
</body>
</html>