-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
92 lines (81 loc) · 3.01 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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Home</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/home.css">
<link rel="stylesheet" href="css/project.css">
</head>
<body>
<div class="about">
<a class="bg_links social facebook" href="https://www.facebook.com/profile.php?id=100028260948123">
<span class="icon"></span>
</a>
<a class="bg_links social github" href="https://github.com/Selinaqianli">
<span class="icon"></span>
</a>
<a class="bg_links social linkedin" href="https://www.linkedin.com/in/qian-selina-li/">
<span class="icon"></span>
</a>
<a class="bg_links logo"></a>
</div>
<nav>
<div class="menu">
<p class="website_name" onclick="document.location='index.html'">Selina</p>
<div class="menu_links">
<a id="defaultOpenPage" onclick="openPage('home', this)" class="link" >home</a>
<a href="https://github.com/UWDrinkMaster/drinkmaster-api" target=”_blank” class="link">Drink Master API</a>
<a href="https://www.github.com/Selinaqianli/login" target=”_blank” class="link">login API</a>
<a onclick="openPage('resume', this)" class="link">resume</a>
</div>
<div class="menu_icon">
<span class="icon"></span>
</div>
</div>
</nav>
<section class="wrapper pagecontent" id="home">
<div class="container">
<div id="scene" class="scene" data-hover-only="false">
<div class="circle" data-depth="1.2"></div>
<div class="one" data-depth="0.9">
<div class="content">
<span class="piece"></span>
<span class="piece"></span>
<span class="piece"></span>
</div>
</div>
<div class="two" data-depth="0.60">
<div class="content">
<span class="piece"></span>
<span class="piece"></span>
<span class="piece"></span>
</div>
</div>
<div class="three" data-depth="0.40">
<div class="content">
<span class="piece"></span>
<span class="piece"></span>
<span class="piece"></span>
</div>
</div>
<p class="head" data-depth="0.50">Selina Li</p>
<p class="head" data-depth="0.10">Selina Li</p>
</div>
<div class="text">
<article>
<p>Bachelor's of Computer Engineering</p>
<p>University of Waterloo</p>
</article>
</div>
</div>
</section>
<section class="wrapper pagecontent" id="resume">
<embed src="documents/resume.pdf" style="width:80%;height:80%;margin: 6% auto 0;" />
</section>
<script src='js/parallax.min.js'></script>
<script src='js/jquery.min.js'></script>
<script src="js/index.js"></script>
<script src="js/project.js"></script>
</body>
</html>