-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathB&B.html
More file actions
45 lines (43 loc) · 1.5 KB
/
B&B.html
File metadata and controls
45 lines (43 loc) · 1.5 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Brown & Brown Absence Services</title>
<style>
/* Add your image URL as the background */
body {
background-image: url('bnb.png');
background-size: contain;
background-repeat: no-repeat;
background-position: center center;
background-attachment: fixed;
}
</style>
</head>
<body>
<!-- Your page content goes here -->
<script>
window.openDialogSettings = {
url: 'https://customer-office.cloud.opendialog.ai',
appKey: '2251799819000000|xr2yujUEJ0HHKaplUm4DczGBG1bsm2OVyDqBx6cO238fafdb',
user: {
custom: {
selected_scenario: '2251799820000018'
}
},
customSettings: {
openCta: {"title":"Hello!👋 Chat with us!","icon":"/images/vendor/@opendialogai/opendialog-design-system-pkg/src/icons/cta-chat-open.svg?9b44efcdecad1a95a5ddc89a0b783056","borderRadius":"50px","width":"280px","height":"80px","background":"#001abf"},
openCta: {
title: "Hello!👋 Chat with us!",
icon: "https://customer-office.cloud.opendialog.ai/images/cta-chat-open.svg",
borderRadius: "50px",
width: "280px",
height: "80px",
background: "#001abf",
},
},
};
</script>
<script src='https://customer-office.cloud.opendialog.ai/dist/nu-webchat-js'></script>
</html>