-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
116 lines (97 loc) · 2.92 KB
/
index.html
File metadata and controls
116 lines (97 loc) · 2.92 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<!-- This meta tag gives ability for all text to be
encoded in a list of all available characters that
can be used inside this website for it to be rendered correctly
utf-8 is the standard encoding and includes all the international symbols
https://unicode-table.com/ *Use this site for different icons and symbols*
-->
<meta charset="utf-8">
<!-- This will display under the Website title in Google search and help with SEO -->
<meta name="description" content="Personal Website" />
<meta name="keywords" content="HTML, CSS, JavaScript">
<meta name="author" content="Swomp3">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Swomp3's Personal Site</title>
</head>
<body>
<table cellspacing="20">
<tr>
<td><img src="img/lukeSF6-circle.png" alt="Luke from Street Fighter" width="200" /></td>
<td>
<h1>Swomp3</h1>
<!-- use <em> tag over <i> for italics as <em> conveys more meaning and is clearer -->
<!-- same with using <strong> over <b>-->
<p><em>Computer Science Student</em></p>
<p>
I am a computer science student and a part-time editor. I am an intermediate programmer
C, C#, C++, Java and Python. For content creation, I use Davinci Resolve and Affinity Photo.
I love playing video games, exercising and watching sports. I main
<strong><a href="https://www.youtube.com/watch?v=966CwMZPkdI" target="_blank">
Luke in Street Fighter</a></strong>
and
<strong><a href="https://www.youtube.com/watch?v=f3WPYei07jM" target="_blank">
May in Guilty Gear</a></strong>.
</p>
</td>
</tr>
</table>
<hr>
<h3>Education</h3>
<ul>
<li>Secondary School</li>
<li>University</li>
</ul>
<hr>
<h3>Work Experience</h3>
<table>
<thead>
<tr>
<th>Date</th>
<th>Work</th>
</tr>
</thead>
<tbody>
<tr>
<td>2019</td>
<td>Co-op Student</td>
</tr>
<tr>
<td>2019-Current</td>
<td>Video Editor</td>
</tr>
</tbody>
<tfoot>
</tfoot>
</table>
<hr>
<h3>Skills</h3>
<table cellspacing="20">
<tbody>
<tr>
<table cellspacing="10">
<tr>
<td>Programming</td>
<td>⭐⭐⭐</td>
<td>Video Editing</td>
<td>⭐⭐⭐⭐</td>
</tr>
</table>
</tr>
<tr>
<table cellspacing="10">
<td>Photo Editing</td>
<td>⭐⭐⭐</td>
<td>Gaming</td>
<td>⭐⭐⭐⭐⭐</td>
</table>
</tr>
</tbody>
</table>
<hr>
<a href="hobbies.html">My Hobbies</a>
<br>
<a href="contact.html">Contact</a>
</body>
</html>