shahin-hashim commited on
Commit
f90d531
1 Parent(s): be30e77

Upload index.html

Browse files
Files changed (1) hide show
  1. templates/index.html +39 -0
templates/index.html ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Hello World!</title>
7
+ <style>
8
+ body {
9
+ font-family: sans-serif;
10
+ display: flex;
11
+ justify-content: center;
12
+ align-items: center;
13
+ min-height: 100vh;
14
+ background-color: #f0f0f0;
15
+ }
16
+ h1 {
17
+ font-size: 5rem;
18
+ color: #3498db;
19
+ text-align: center;
20
+ }
21
+ </style>
22
+ </head>
23
+ <body>
24
+ <h1>Hello World!</h1>
25
+ </body>
26
+ <script type="text/javascript">
27
+ (function(d, t) {
28
+ var v = d.createElement(t), s = d.getElementsByTagName(t)[0];
29
+ v.onload = function() {
30
+ window.voiceflow.chat.load({
31
+ verify: { projectID: '6623fe120d7189e2f702a270' },
32
+ url: 'https://general-runtime.voiceflow.com',
33
+ versionID: 'production'
34
+ });
35
+ }
36
+ v.src = "https://cdn.voiceflow.com/widget/bundle.mjs"; v.type = "text/javascript"; s.parentNode.insertBefore(v, s);
37
+ })(document, 'script');
38
+ </script>
39
+ </html>