-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
76 lines (63 loc) · 2.89 KB
/
about.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
<html>
<head>
<title>A quick little site for when i'm bored!</title>
<link rel="stylesheet" href="style.css" type="text/css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div id="header">
<h1>javascript experiments</h1>
<p>this website is for me to showcase some small javascript things i've been trying in my spare time.</p>
</div>
<div class="topbar">
<h2>about.</h2>
<div class="navbar">
<a href="index.html">introduction</a>
<a href="about.html">about</a>
<a href="directory.html">directory</a>
</div>
</div>
<hr />
<div class = "page-content">
<div id = "about-left">
<p>skills</p>
<ul>
<li>self motivation</li>
<li>team working</li>
<li>time management</li>
<li>determination</li>
</ul>
<br />
<p>current projects:</p>
<ul>
<li>this website!</li>
<li>creating a main portfolio</li>
<li>learning php</li>
<li>learning c</li>
</ul>
</div>
<div id = "about-right">
<div class="icon-bar">
<a href="https://github.com/SAndersonCheung" class="github"><i class="fa fa-github"></i></a>
<a href="https://www.linkedin.com/in/summer-anderson-cheung-aa582613b/" class="linkedin"><i class="fa fa-linkedin"></i></a>
</div>
</div>
<div id = "about-center">
<p>hi! my name is summer anderson-cheung.</p>
<p>i'm currently a second year student at newcastle university, studying computer science. </p>
<p>i love frogs, web design/development, comic books, and video games!</p>
<p>my known languages are java, html/css/js, visualbasic.net, with some python, and php</p>
<p>my hobbies outside of computing include jiu jitsu, photography, and writing.</p>
<p>before i got into computing, i wanted to be an architect, or a paleontologist.</p>
<p>if you wish to contact me, my email is summer.anderson99@hotmail.com</p>
<p>thank you for visiting my website, <br /> i hope you enjoy it!</p>
</div>
</div>
<hr />
<div id="footer">
<a href="about.html">summer anderson-cheung</a>
<a href="https://www.ncl.ac.uk/computing/">newcastle university</a>
</div>
</body>
</html>
<!-- Ctrl + Alt + I to Intent! -->