forked from prestonlimlianjie/digital-namecard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
129 lines (119 loc) · 3.59 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
<!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="DSC08845 square.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">Dax J Blake</p>
<p class="text-title-company">Client Solutions Manager</p>
<p class="text-title-company">Xylem Decision Intelligence Solutions</p>
</div>
<div class="col">
<img src="Xylem_tag_rgb[27983].jpg" 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:+16142052476">
<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">+1 614.205.2476</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.xylem.com/en-us/brands/xylem-vue/">
<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">www.xylem.com/en-us/brands/xylem-vue/</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/maps/place/Emporium+Building,+121+S+Niles+Ave,+South+Bend,+IN+46617/@41.6754444,-86.2466971,17z/data=!3m1!4b1!4m5!3m4!1s0x8816cd399a5a41a3:0x3d54787a4b9022e3!8m2!3d41.6754404!4d-86.2445084">
<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">121 S.Niles Ave. Ste 22, South Bend, IN 46617 USA</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>