-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.html
114 lines (107 loc) · 3.68 KB
/
main.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html>
<link type="text/css" rel="stylesheet" href="style.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<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" />
<title>Introduction | Grace Lim</title>
<style>
@import url("https://fonts.googleapis.com/css2?family=Play&display=swap");
</style>
</head>
<body>
<main>
<section id="about">
<div id="profilePic">
<img
src="grace2.png"
style="
max-width: 100%;
height: auto;
width: 500px;
border-radius: 50%;
margin: 15px;
"
/>
</div>
<div id="intro">
<!-- <h1 class=" drop-in">Hello there!</h1> -->
<div class="waviy">
<span style="--i: 1">H</span>
<span style="--i: 2">e</span>
<span style="--i: 3">l</span>
<span style="--i: 4">l</span>
<span style="--i: 5">o</span>
<span></span>
<span></span>
<span></span>
<span style="--i: 6">t</span>
<span style="--i: 7">h</span>
<span style="--i: 8">e</span>
<span style="--i: 9">r</span>
<span style="--i: 10">e</span>
<span style="--i: 11">!</span>
</div>
<div id="aboutme">
<h2>About Me</h2>
<p>
My name is Grace Lim, and I am a Year 2 Business Analytics
Undergraduate student from School of Computing in NUS. I am
currently exploring and learning more about software development!
</p>
<div class="container">
<a href="resume.html">
<button class="button">Learn more about me</button>
</a>
</div>
<p></p>
<div id="channels">
<div id="channel-break">
<p>________________________________________________________</p>
</div>
<div id="channels-header">
<h3>Contact me</h3>
</div>
</div>
<div id="contactme">
<a href="https://t.me/gracelimpeh">
<button class="btnicons">
<i class="fa fa-telegram fa-lg"></i>
</button>
</a>
<p><span class="emphasized">Telegram</span></p>
<a href="https://github.com/gracelimshiern">
<button class="btnicons" style="margin-left: 15vw">
<i class="fa fa-github fa-lg"></i>
</button>
</a>
<p><span class="emphasized">GitHub</span></p>
</div>
<div id="contactme">
<a href="https://www.linkedin.com/in/grace-lim-89918521a/">
<button class="btnicons">
<i class="fa fa-linkedin fa-lg"></i>
</button>
</a>
<p><span class="emphasized">LinkedIn</span></p>
<a href="mailto:[email protected]">
<button class="btnicons" style="margin-left: 15.7vw">
<i class="fa fa-envelope fa-lg"></i>
</button>
</a>
<p><span class="emphasized">Email</span></p>
</div>
</div>
<!-- <div class = "container" >
<a href="tel:+65-93677559">Call me</a>
</div> -->
</div>
</section>
</main>
</body>
</html>