-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
147 lines (131 loc) · 4.11 KB
/
index.html
File metadata and controls
147 lines (131 loc) · 4.11 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>
<head>
<title>Wen Xiong Zhang's Profile</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=Caveat:wght@400..700&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./css/mainPage.css" />
<script src="./js/function.js"></script>
<script src="./js/testing.js"></script>
</head>
<body onload="backgroundColor()">
<center>
<!--Start of Header
The following code are the titles.
It include a picture of me as well
as my name
-->
<header>
<table id="main">
<thead>
<tr>
<td rowspan="2">
<img
src="img/selfie.png"
width="350px"
style="margin-right: 100px; border-radius: 90%"
/>
</td>
<td>
<h1 class="title">Wen Xiong Zhang</h1>
</td>
</tr>
</thead>
</table>
</header>
<!--End of Header-->
<!--Start of Main-->
<main id="aboutMe">
<div>
<h2>About Me:</h2>
<p>
I'm a rising junior at City Tech, majoring in Computer Systems,
currently looking for a career in the Tech Industry. As a computer
systems major, I'm very passionate about software development,
particularly in the game industry. I have coded short games during
my free time using Pygame and C#, like Flappy Bird and a Simple 2D
adventure game. Before graduation, one of my goals is to publish one
of my completed games. <br /><br />
In addition to games, I am also well educated in Web Development. In
college, I took the Web Development and Web Development II courses.
As such, I'm proficient in using HTML, JavaScript, and PHP. Using
all my experience in various coding languages, I'll establish my
position in future companies.
</p>
</div>
</main>
</center>
<!--End of Header-->
<br />
<br />
<br />
<!--Start of Section
Include my Contact Info
and list of my Skills
-->
<section class="docBorder">
<!--
For Contact Info, I format it in a <table> tag.
-->
<table id="lefts" style="width: wrap-content; display: inline">
<thead>
<tr>
<th class="subtitle" colspan="2">Contact Info</th>
</tr>
</thead>
<tbody>
<tr>
<td class="pictureDecor"></td>
<td>
<a class="contactMethod" href="mailto:wenxiong342@gmail.com"
>Email</a
>
</td>
</tr>
<tr>
<td class="pictureDecor"></td>
<td>
<a
class="contactMethod"
href="https://www.linkedin.com/in/zhang-wenxiong/?trk=public-profile-join-page"
>LinkedIn</a
>
</td>
</tr>
<tr>
<td class="pictureDecor"></td>
<td>
<a
class="contactMethod"
href="ZhangWenxiongResume.pdf"
target="_blank"
>Resume</a
>
</td>
</tr>
</tbody>
</table>
<!--
For Skills, I use <div> and <ul> tag to format them
(Trying different method)
-->
<div id="rights" style="width: wrap-content">
<h1 class="subtitle">Skills</h1>
<ul>
<li>Web Development</li>
<li>Game Development</li>
<li>Python</li>
<li>SQL</li>
<li>Problem Solving</li>
<li>Organization Skills</li>
<li>Customer Service</li>
</ul>
</div>
</section>
<!--End of Section-->
</body>
</html>