-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
168 lines (146 loc) · 5.63 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="css/style_homepage.css">
<link rel="stylesheet" href="css/slider_homepage.css">
<link href="https://fonts.googleapis.com/css2?family=Manrope&display=swap" rel="stylesheet">
<link rel="icon" href="icons/favicon.ico" type="image/x-icon">
<title>Code Paradox</title>
</head>
<body>
<div class="overlay">
<div class="banner">
<div class="logo"></div>
<div class="search-box-wrapper">
<input type="text" class="search-box-input" placeholder="Looking for anything?">
<button class="search-button">🔍</button>
</div>
<div class="menu-container">
<ul id=#menu>
<li class="menuItem">
<a href="index.html">Home</a>
</li>
<li class="menuItem">
<a href="login.html">Login</a>
</li>
<li class="menuItem">
<a href="register.html">Register</a>
</li>
<li class="menuItem">
<a href="aboutus.html">About Us</a>
</li>
</ul>
</div>
</div>
<div class="container">
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<div id="slider">
<div id="long">
<div id="image1"></div>
<div id="image2"></div>
<div id="image3"></div>
</div>
</div>
<div class="features">
<div id="online-banking">
<div class="feature-heading">
Lights
</div>
<ul>
<li>Bronze Farmhouse Chandlier</li>
<li>Antique Ceiling Lights</li>
<li>Art Glass Lamps</li>
</ul>
</div>
<div id="mobile-banking">
<div class="feature-heading">
Fans
</div>
<ul>
<li>Fanimation Studio Collection Slinger</li>
<li>Hunter Lincoln Edison Style</li>
<li>Harbor Breeze Armitage</li>
</ul>
</div>
<div id="branch-banking">
<div class="feature-heading">
Chairs
</div>
<ul>
<li>Woven Metal Conversation Chair</li>
<li>Metal Swivel Rocking Chairs</li>
<li>Metal Stationary Dining Chairs</li>
</ul>
</div>
</div>
</div>
</div>
<script type="text/javascript">
/* NOTE : Use web server to view HTML files as real-time update will not work if you directly open the HTML file in the browser. */
(function(d, m){
var kommunicateSettings = {
"appId":"11d15b5f510078cb98c56bbc548ab0e94",
"preLeadCollection": [{
"field": "Name", // Name of the field you want to add
"required": true, // Set 'true' to make it a mandatory field
"placeholder": "enter your name" // add whatever text you want to show in the placeholder
},
{
"field": "Email",
"type": "email",
"required": true,
"placeholder": "Enter your email"
},
{
"field": "Phone",
"type": "number",
"required": true,
"element": "input", // Optional field (Possible values: textarea or input)
"placeholder": "Enter your phone number"
},
],
"popupWidget":true,
"automaticChatOpenOnNavigation":true,
"openConversationOnNewMessage":true,
"voiceInput":true,
"locShare":true,
/* "onInit": function () {
var events = {
'onMessageReceived': function (resp) {
console.log(resp);
//called when a new message is received
},
'onMessageSent': function (resp) {
console.log(resp);
//called when the message is sent
}
};
Kommunicate.subscribeToEvents(events);
}*/
};
// <script type="text/javascript">
/* NOTE : Use web server to view HTML files as real-time update will not work if you directly open the HTML file in the browser. */
// var kommunicateSettings = {"appId":"b5225ae9b624e36ea3bd0da64db9239d","popupWidget":true,"automaticChatOpenOnNavigation":true};
var s = document.createElement("script");
s.type = "text/javascript"; s.async = true;
s.src = "https://widget.kommunicate.io/v2/kommunicate.app";
var h = document.getElementsByTagName("head")[0];
h.appendChild(s);
window.kommunicate = m;
m._globals = kommunicateSettings;
})(document, window.kommunicate || {});
</script>
</body>
</html>