-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
index.html
130 lines (120 loc) · 3.49 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="main.css">
<link href='https://fonts.googleapis.com/css?family=Lato:200,300,400,700' rel='stylesheet' type='text/css'>
<link href="https://fonts.googleapis.com/css?family=Muli:200,300" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
</head>
<body>
<section class="bg-color-grey banner">
<div class="container">
<div class="row">
<div class="col"></div>
<div class="col is-5">
<img class="profile-pic" src="preston.jpg" alt="Profile Picture">
</div>
<div class="col"></div>
</div>
</div>
</section>
<section class="bg-color-white primary-info">
<div class="container">
<div class="row name-title-company">
<div class="col is-6">
<p class="text-name">Preston Lim</p>
<p class="text-title-company">Associate Software Engineer</p>
<p class="text-title-company">Data Science Division, GovTech</p>
</div>
<div class="col">
<img src="assets/govtech-logo-blue.svg" alt="Company Logo">
</div>
</div>
</div>
</section>
<section class="bg-color-white secondary-info">
<a href="mailto:[email protected]">
<div class="container">
<div class="row detail">
<div class="col">
<img src="assets/icon-email.svg" alt="Email Icon"">
</div>
<div class="col is-8">
<p class="text-detail">[email protected]</p>
</div>
<div class="col">
<img src="assets/right-arrow.svg" alt="Right Arrow" height="50%" width="40%">
</div>
</div>
</div>
</a>
</section>
<section class="bg-color-white secondary-info">
<a href="tel:+6591234567">
<div class="container">
<div class="row detail">
<div class="col">
<img src="assets/icon-phone.svg" alt="Phone Icon"">
</div>
<div class="col is-8">
<p class="text-detail">(+65) 9123 4567</p>
</div>
<div class="col">
<img src="assets/right-arrow.svg" alt="Right Arrow" height="50%" width="40%">
</div>
</div>
</div>
</a>
</section>
<section class="bg-color-white secondary-info">
<a href="https://www.tech.gov.sg">
<div class="container">
<div class="row detail">
<div class="col">
<img src="assets/icon-website.svg" alt="Website Icon"">
</div>
<div class="col is-8">
<p class="text-detail">tech.gov.sg</p>
</div>
<div class="col">
<img src="assets/right-arrow.svg" alt="Right Arrow" height="50%" width="40%">
</div>
</div>
</div>
</a>
</section>
<section class="bg-color-white secondary-info">
<a href="https://www.google.com.sg/maps/place/GovTech+Hive/@1.2998708,103.7871504,17z/
data=!3m1!4b1!4m5!3m4!1s0x31da1a457344a501:0x2202a995a6abc728!8m2!3d1.2998708!4d103.7893391">
<div class="container">
<div class="row detail">
<div class="col">
<img src="assets/icon-address.svg" alt="Address Icon"">
</div>
<div class="col is-8">
<p class="text-detail">1 Fusionopolis, Sandcrawler, #09-01, 138577</p>
</div>
<div class="col">
<img src="assets/right-arrow.svg" alt="Right Arrow" height="50%" width="40%">
</div>
</div>
</div>
</a>
</section>
<section class="bg-color-white bottom">
<div class="container">
<div class="row">
<div class="col"></div>
<div class="col is-5">
<div class="button">
<a href="user.vcf">
<p class="button">Download</p>
</a>
</div>
</div>
<div class="col"></div>
</div>
</div>
</section>
</body>
</html>