-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
128 lines (123 loc) · 5.04 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
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale-1" />
<title>Care Connect</title>
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm"
crossorigin="anonymous" />
<script
src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"
integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"></script>
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap"
rel="stylesheet" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-196668028-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-196668028-1');
</script>
<link href="css/styles.css" rel="stylesheet" />
<script src="script.js"></script>
</head>
<body onload="onIndexLoad()" style="background-color: #12153d">
<div class="body">
<div style="flex: 1; flex-direction: row; display: flex">
<!-- <a id="link-banner-side" onclick="onBannerSide()" target="top" class="banner-left">
<img
src="http://a.impactradius-go.com/display-ad/11346-1446118"
width="160px"
height="100%"
style="margin-top: 112px; border-radius: 16px; margin-right: 16px; cursor: pointer" />
</a> -->
<div>
<div class="header">
<div style="display: flex; align-items: center; justify-content: center">
<img class="logo" src="img/logo.png" />
<p class="title">Care Connect</p>
</div>
<div style="display: flex; align-items: center;">
<a id="link-facebook" onclick="onLinkFacebook()" target="top">
<img
class="facebook"
src="img/facebook.png"
style="cursor: pointer; width: 40px; height: 40px;margin-right:24px;" />
</a>
<a id="link-tele" onclick="onLinkFacebook()" target="top">
<img
class="tele"
src="img/tele.png"
style="cursor: pointer; width: 40px; height: 40px;margin-right:24px;" />
</a>
<a id="link-buy" onclick="onLinkBuyLoad()" target="top">
<div
id="buy"
style="
cursor: pointer;
background-color: #073780;
display: flex;
justify-content: center;
align-items: center;
border-radius: 16px;
height: 40px;
padding-right: 16px;
">
<p style="font-size: 14px; font-weight: bold; color: white">Buy Now</p>
</div>
</a>
</div>
</div>
<div class="content" style="flex: 1">
<div class="box">
<div class="scan-view">
<div class="ios-view">
<div style="border-radius: 12px; overflow: hidden">
<img src="img/ios.png" style="width: 100%; height: auto" />
</div>
<div
style="
display: flex;
justify-content: center;
align-items: center;
margin-top: 16px;
">
<img src="img/ios_logo.png" style="width: 32px; height: 32px" />
<p style="color: white; font-size: 20px; font-weight: bold">iOS Scan</p>
</div>
</div>
<div class="android-view">
<div style="border-radius: 12px; overflow: hidden">
<img src="img/android.png" style="width: 100%; height: auto" />
</div>
<div
style="
display: flex;
justify-content: center;
align-items: center;
margin-top: 16px;
">
<img src="img/android_logo.png" style="width: 32px; height: 32px" />
<p style="color: white; font-size: 20px; font-weight: bold">Android Scan</p>
</div>
</div>
</div>
<div class="image">
<img src="img/image.png" style="width: 100%; height: 100%; object-fit: contain;" />
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>