-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (35 loc) · 1.79 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
<html>
<head>
<title>A quick little site for when i'm bored!</title>
<link rel="stylesheet" href="style.css" type="text/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>introduction.</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">
<!-- image carousel here! -->
<img src="./undraw_my_universe_lxnl.svg" alt="Clip Art." id="mainPic">
<p>the aim of this website is to act as an online portfolio: showcasing different things that I have achieved and experimented with in regards to HTTP/CSS/JS programming. however, this is not the only programming experience i have, and other projects in other programming languages (java, python, php) are available upon request.</p>
<p>currently, i do not know what i would like to specialise in, within computer science.</p>
<br>
<p>be sure to check out my <a href="directory.html">directory</a> to see some of the stuff i've been working on recently.</p>
</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! -->