-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
109 lines (106 loc) · 3.92 KB
/
about.html
File metadata and controls
109 lines (106 loc) · 3.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="script.js"></script>
<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=Josefin+Sans:ital,wght@0,100;0,200;0,300;0,400;1,100;1,200;1,300;1,400&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<title>About</title>
</head>
<body>
<div class="header">
<img class="logo" src="assets/logo.png" alt="Logo">
<ul class="links">
<li><a href="/index.html" class="underline">Home</a></li>
<li><a href="/about.html" class="underline">About</a></li>
<li><a href="index.html#portfolio" class="underline">Portfolio</a></li>
</ul>
</div>
<div class="about">
<div class="about-main">About<div class="secret">If you find this I'll give you a reward c:</div></div>
<div class="about-info">
<img class="about-image" src="assets/self.jpg" alt="Picture of myself">
<div class="console">
> Chanson.origin
<br>
<span class="answer">
=> “Vancouver, Canada”
<br>
<br>
</span>
> Chanson.education
<br>
<span class="answer">
=> “Simon Fraser University”
<br>
<br>
</span>
> Chanson.major
<br>
<span class="answer">
=> “Computer Science”
<br>
<br>
</span>
> Chanson.about
<br>
<span class="answer">
=> "Avid learner, always striving for better"
<br>
<br>
</span>
> Chanson.interest
<br>
<span class="answer">
=> [“Design”, “Code”, “Ultimate Frisbee”, “Volleyball”, “Video Games”, “Anime”]
<br>
</span>
</div>
</div>
<div class="education">
<div class="education-main">Education</div>
<div class="sfu">
<div class="sfu-timeline">
<div>2018-Present</div>
<br>
<div style="color: rgb(170, 170, 255);">Simon Fraser University</div>
</div>
<div class="sfu-link">
<div>Under the CMPT program which focuses on the study of computers</div>
<br>
<a href="https://www.sfu.ca/computing.html"><span class="material-icons" style="color: rgb(68, 68, 255);">chevron_right</span></a>
</div>
</div>
</div>
<div class="line"></div>
</div>
<ul class="footer">
<li>
<div class="footer-main">Contact</div>
</li>
<li>
<div class="link">
<i class="material-icons">call</i>
778-302-6266
</div>
</li>
<li>
<a class="link" href="mailto:cta111@sfu.ca">
<i class="material-icons">email</i>
cta111@sfu.ca
</a>
</li>
<li>
<a class="link" href="/assets/resume.pdf">
<i class="material-icons">insert_drive_file</i>
Resume
</a>
</li>
</ul>
</body>
</html>