-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
94 lines (85 loc) · 3.05 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Zoey Xie</title>
<link rel="stylesheet" href="style.css">
<script defer src="static/granim.min.js"></script>
<link href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap" rel="stylesheet">
<script defer src="https://kit.fontawesome.com/9306cde46d.js" crossorigin="anonymous"></script>
<meta name="viewport" content="width=device-width,initial-scale=1">
</head>
<body>
<script defer src="main.js"></script>
<div class="header">
<div class="window">
<div class="w1">
<div id="circle1" class="circle red"><div class="btn">×</div></div>
<div id="circle2" class="circle yellow"><div class="btn">—</div></div>
<div id="circle3" class="circle green"><div id="triangle1"></div><div id="triangle2"></div></div>
</div>
<div class="intro">
<div class="pic">
<!--Replace this with your own picture, and also on line 54-->
<img src="static/pic.jpeg" alt="judy">
</div>
<div class="intro-text">
<h1 id="name">Zoey Xie</h1>
<p>A first year lol?</p>
<!-- Here are some social links, feel free to replace them or add more (Github, resume, etc.) -->
<div class="social-buttons">
<!-- Add your LinkedIn URL here -->
<a href="#" target="_blank">
<i class="fa-brands fa-linkedin-in icon">
</i>
</a>
<!-- Add your email here -->
<a href="mailto:zoey.xie@mail.utoronto.ca" target="_blank">
<i class="fa-regular fa-envelope icon"></i>
</a>
</div>
</div>
</div>
</div>
<canvas id="canvas-basic">
</canvas>
<div class="pic">
<!--Replace this with your own picture-->
<img src="static/pic.jpeg" alt="Zoey Xie">
</div>
</div>
<div class="bottom">
<div class="about-me">
<div class="title">
<div class="title-circle red"></div>
<h1>About Me</h1>
</div>
<p>I like polar bears</p>
<div class="skills">
<span class="skill-tag"> Python</span>
<span class="skill-tag"> HTML/CSS</span>
<!-- Add more skills here! -->
</div>
</div>
<div class="projects-section">
<div class="title">
<div class="title-circle yellow"></div>
<h1>Projects</h1>
</div>
<div class="project-list">
<div class="project">
<div>
<h2>Personal Website</h2>
<p>The website you're looking at right now was made by me!</p>
<div class="skills">
<span class="skill-tag"> HTML/CSS</span>
<span class="skill-tag">JavaScript</span>
</div>
</div>
<img src="static/webdev.png"/>
</div>
</div>
</div>
</div>
</body>
</html>