-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (65 loc) · 2.55 KB
/
Copy pathindex.html
File metadata and controls
69 lines (65 loc) · 2.55 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<meta name="description" content="A simply designed website">
<meta name="author" content="Alexander Zhou">
<title>Alex's Website | Welcome</title>
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<header>
<div class="container">
<div id="branding">
<h1><span class="highlight">Alex Zhou</span>'s Website</h1>
</div>
<nav>
<ul>
<li class="current"><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="skills.html">Skills</a></li>
<li><a href="side projects.html">Side Projects</a></li>
</ul>
</nav>
</div>
</header>
<section id="showcase">
<div class="container">
<h1>Searching for Employment</h1>
<p>I am a Computer Science major going to UCSD and graduating June 2020.</p>
</div>
</section>
<section id="newsletter">
<div class="container">
<h1>Subscribe to our Newsletter</h1>
<form>
<input type="email" placeholder="Enter Email..." />
<button type="submit" class="button_1">Subscribe</button>
</form>
</div>
</section>
<section id="boxes">
<div class="container">
<center><h2>Programming Languages</h2></center>
<div class="box">
<h3>Java</h3>
<img src="./images/java.png">
<p>The first programming language I learned. I am very comfortable with Java and am confident that I can translate that to a professional environment. The gaming server that I co-own also runs exclusively on Java.</p>
</div>
<div class="box">
<h3>C</h3>
<img src="./images/C.png">
<p>I am capable with C and have a deep understanding of it, having learned how it interacts with assembly code. Though it is not my strongest language, I am still easily able to perform up to par with this language.<p>
</div>
<div class="box">
<h3>Swift</h3>
<img src="./images/swift.png">
<p>I have a basic understanding of Swift. Though I am still learning, the knowledge I have was enough to be accepted into an external set of courses called CodePath, and as such I expect to improve my abilities in this language very quickly.</p>
</div>
</div>
</section>
<footer>
<p>Alexander Zhou's Website, Copyright © 2017</p>
</body>
</html>