-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest291025.html
More file actions
77 lines (68 loc) · 1.8 KB
/
test291025.html
File metadata and controls
77 lines (68 loc) · 1.8 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>🧸 Widget Playground</title>
<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@300;600&display=swap" rel="stylesheet">
<style>
body {
margin: 0;
padding: 2rem;
font-family: 'Nunito', sans-serif;
background: linear-gradient(to bottom right, #ffe7e7, #e6f0ff);
color: #333;
display: flex;
flex-direction: column;
align-items: center;
min-height: 100vh;
}
h1 {
font-size: 2.5rem;
font-weight: 600;
color: #5a3e85;
margin-bottom: 0.5rem;
}
p {
font-size: 1.1rem;
color: #555;
margin-bottom: 2rem;
}
.widget-container {
width: 100%;
max-width: 600px;
padding: 2rem;
background-color: #ffffffcc;
border-radius: 16px;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
footer {
margin-top: auto;
padding: 1rem;
font-size: 0.9rem;
color: #888;
}
</style>
</head>
<body>
<h1>🧸 Welcome to My Widget Test Page</h1>
<p>This is a cozy little place to test external widgets (main) ✨</p>
<div class="widget-container">
<!-- Insert your widget code below -->
<div id="my-widget">Your widget will appear in the bottom right.</div>
<!-- Example: <script src="https://example.com/widget.js"></script> -->
</div>
<footer>
Made with 💕 on GitHub Pages
</footer>
<script type="text/javascript" data-widget-id="69" >
(function() {
var s = document.createElement('script');
s.async = true;
s.src = 'https://widget.hpa.ai/widget.umd.js';
var e = document.getElementsByTagName('script')[0];
e.parentNode.insertBefore(s, e);
})();
</script>
</body>
</html>