Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
sandip01004 authored Jul 5, 2023
0 parents commit dec2531
Showing 1 changed file with 54 additions and 0 deletions.
54 changes: 54 additions & 0 deletions gsmd.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
<!doctype html>
<html>
<head>
<title>Intergram Demo Page</title>

<meta charset="utf-8" />
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">

<style type="text/css">
body {
background-color: #f0f0f2;
margin: 10px;
padding: 0;
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.main {
max-width: 600px;
margin: 5em auto;
padding: 50px;
background-color: #fff;
border-radius: 1em;
}
</style>

</head>
<body>

<div class="main">
<h1>messages here</h1>
<p>send your message by clicking on the floating chatbox below </p>


</div>

</body>

<script>
window.intergramId = "896612074";
window.intergramCustomizations = {
titleClosed: 'Closed chat title',
titleOpen: 'talk to sandy',
introMessage: 'First message when the user opens the chat for the first time',
autoResponse: 'A message that is sent immediately after the user sends its first message',
autoNoResponse: 'A message that is sent one minute after the user sends its first message ' +
'and no response was received',
mainColor: "#E91E63", // Can be any css supported color 'red', 'rgb(255,87,34)', etc
alwaysUseFloatingButton: true // Use the mobile floating button also on large screens
};
</script>
<script id="intergram" type="text/javascript" src="https://www.intergram.xyz/js/widget.js"></script>

</html>

0 comments on commit dec2531

Please sign in to comment.