-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
30 lines (26 loc) · 909 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Zoomment.com Widget</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
<style>
html,
body {
font-family: "Roboto", sans-serif;
font-weight: 400;
font-style: normal;
}
</style>
</head>
<body>
<div style="max-width: 600px; margin: 0 auto;">
<div id="zoomment" data-emotions="❤️,😀,🪄,🥸,💡,🤔,💩,😢,😢,😢,😢,😢" data-api-url="http://localhost:9547/api"
data-theme="light" data-language="en" data-gravatar="retro"></div>
<script type="module" src="src/index.tsx"></script>
</div>
</body>
</html>