forked from prestonlimlianjie/digital-namecard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
115 lines (102 loc) · 2.8 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
<!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="header">
<img class="profile-pic" src="user.jpg" alt="Profile Picture">
</section>
<section class="primary-info">
<div class="row">
<div class="company-title col">
<p class="text-name">Simon Polster</p>
<p class="text-title-company">map maker & Co-founder</p>
</div>
<div class="company-logo col">
<img class="company-logo" src="icon.png" alt="Cartisan Logo">
</div>
</div>
</section>
<section class="secondary-info table">
<a href="mailto:[email protected]">
<div class="row">
<div class="col first">
<img src="assets/icon-email.svg" alt="Email Icon"">
</div>
<div class="col">
<p class="text-detail">[email protected]</p>
</div>
<div class="col last">
<img src="assets/right-arrow.svg" alt="Right Arrow">
</div>
</div>
</a>
</section>
<section class="secondary-info table">
<a href="tel:+4915731431648">
<div class="row">
<div class="col first">
<img src="assets/icon-phone.svg" alt="Phone Icon"">
</div>
<div class="col">
<p class="text-detail">(+49) 157 314 316 48</p>
</div>
<div class="col last">
<img src="assets/right-arrow.svg" alt="Right Arrow">
</div>
</div>
</a>
</section>
<section class="secondary-info table">
<a href="http://cartisan.org" target="_blank">
<div class="row">
<div class="col first">
<img src="assets/icon-website.svg" alt="Website Icon"">
</div>
<div class="col">
<p class="text-detail">cartisan.org</p>
</div>
<div class="col last">
<img src="assets/right-arrow.svg" alt="Right Arrow">
</div>
</div>
</a>
</section>
<section class="secondary-info table">
<a href="https://www.facebook.com/CartisanOrg/" target="_blank">
<div class="row">
<div class="col first">
<img src="assets/icon_fb.svg" alt="Website Icon"">
</div>
<div class="col">
<p class="text-detail">facebook</p>
</div>
<div class="col last">
<img src="assets/right-arrow.svg" alt="Right Arrow">
</div>
</div>
</a>
</section>
<section class="secondary-info table">
<div class="row">
<div class="col first">
<img src="assets/icon-address.svg" alt="Address Icon"">
</div>
<div class="col">
<p class="text-detail">Berlin, Germany</p>
</div>
<div class="col last">
</div>
</div>
</section>
<div class="button">
<a href="user.vcf">
<p class="button">Download</p>
</a>
</div>
</body>
</html>