-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (77 loc) · 1.86 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
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Pathetic Personal Site</title>
</head>
<body>
<img src="wizard_halston.png" alt="halston as a wizard" />
<hr size="3" noshade />
<a href="contact-me.html">Contact Me</a>
<h1>Big man on campus</h1>
<em
><p>
Taking a web development bootcamp course to prepare for the
<strong>real world</strong>.
</p></em
>
<p>I want to learn and be cool.</p>
<hr size="3" noshade />
<h3>Some more shit</h3>
<ul>
<li>Udemy boot camp</li>
<li>More experience for later!</li>
</ul>
<hr size="3" noshade />
<h3>Random list of junk</h3>
<ol>
<li>Valorant</li>
<li>Lost Ark</li>
<li>Guild Wars 2</li>
</ol>
<hr size="3" noshade />
<h3>Work Experience</h3>
<table>
<thead>
<tr>
<th>Dates</th>
<th>Work</th>
</tr>
</thead>
<tbody>
<tr>
<td>2012</td>
<td>Computer Repair</td>
</tr>
<tr>
<td>2014-2018</td>
<td>More schooling</td>
</tr>
</tbody>
</table>
<hr size="3" noshade />
<table>
<thead>
<tr>
<th>Skills</th>
</tr>
</thead>
<tbody>
<tr>
<td>Java</td>
<td>⭐⭐⭐</td>
</tr>
<tr>
<td>Javascript</td>
<td>⭐⭐⭐</td>
</tr>
<tr>
<td>HTML/CSS</td>
<td>⭐</td>
</tr>
</tbody>
</table>
</body>
</html>