-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdemo.html
More file actions
34 lines (28 loc) · 905 Bytes
/
Copy pathdemo.html
File metadata and controls
34 lines (28 loc) · 905 Bytes
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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Exemplo: widget em outro site</title>
<style>
body{ font-family: sans-serif; max-width:900px; margin:60px auto; padding:0 20px; color:#1D2B36; }
h1{ font-size:22px; }
p.hint{ opacity:.6; font-size:14px; }
</style>
</head>
<body>
<h1>Exemplo de site — "Nossa loja"</h1>
<p class="hint">Esta página simula um site qualquer que incorporou o widget de depoimentos abaixo.</p>
<hr>
<h2>O que os clientes dizem</h2>
<!--
É só isto que precisa ser colado em qualquer site (grid):
-->
<div id="meus-testemunhos"
data-supabase-url="https://lovwxccrxxahdxtychxy.supabase.co"
data-supabase-key="sb_publishable_HJ3-sMYvcOXXWJTtkz-7Rg_alxdTn6L"
data-limit="6"
data-layout="grid"></div>
<script src="widget.js"></script>
</body>
</html>