Update index.html
Browse files- index.html +75 -19
index.html
CHANGED
@@ -1,19 +1,75 @@
|
|
1 |
-
<!
|
2 |
-
<html>
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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>January 2025 Hugginess Survey Results</title>
|
7 |
+
<link href="https://fonts.googleapis.com/css2?family=Mulish:wght@400;600;700&display=swap" rel="stylesheet">
|
8 |
+
<style>
|
9 |
+
body {
|
10 |
+
font-family: 'Mulish', sans-serif;
|
11 |
+
margin: 40px auto;
|
12 |
+
max-width: 800px;
|
13 |
+
padding: 20px;
|
14 |
+
line-height: 1.6;
|
15 |
+
background: #f7f7f7;
|
16 |
+
border: 1px solid #ccc;
|
17 |
+
box-shadow: 0 0 10px rgba(0,0,0,0.1);
|
18 |
+
}
|
19 |
+
h1 {
|
20 |
+
color: #333;
|
21 |
+
border-bottom: 2px solid #333;
|
22 |
+
padding-bottom: 10px;
|
23 |
+
margin-bottom: 20px;
|
24 |
+
font-size: 2.4em;
|
25 |
+
}
|
26 |
+
h2 {
|
27 |
+
color: #666;
|
28 |
+
border-bottom: 1px solid #ddd;
|
29 |
+
padding-bottom: 5px;
|
30 |
+
margin-bottom: 10px;
|
31 |
+
font-size: 1.8em;
|
32 |
+
}
|
33 |
+
.section {
|
34 |
+
margin-bottom: 40px;
|
35 |
+
padding: 20px;
|
36 |
+
background: #fff;
|
37 |
+
border: 1px solid #ddd;
|
38 |
+
box-shadow: 0 0 5px rgba(0,0,0,0.05);
|
39 |
+
}
|
40 |
+
img {
|
41 |
+
display: block;
|
42 |
+
margin: 0 auto 20px;
|
43 |
+
max-width: 100%;
|
44 |
+
height: auto;
|
45 |
+
}
|
46 |
+
.nps-score-breakdown {
|
47 |
+
max-width: 400px;
|
48 |
+
}
|
49 |
+
.highlight {
|
50 |
+
font-weight: bold;
|
51 |
+
color: blue;
|
52 |
+
}
|
53 |
+
.light-green {
|
54 |
+
color: lightgreen;
|
55 |
+
}
|
56 |
+
.light-blue {
|
57 |
+
color: blue;
|
58 |
+
}
|
59 |
+
.last-line {
|
60 |
+
font-weight: bold;
|
61 |
+
font-size: 1.2em;
|
62 |
+
}
|
63 |
+
ul {
|
64 |
+
padding-left: 20px;
|
65 |
+
margin-top: 10px;
|
66 |
+
}
|
67 |
+
ul li {
|
68 |
+
margin-bottom: 5px;
|
69 |
+
}
|
70 |
+
</style>
|
71 |
+
</head>
|
72 |
+
<body>
|
73 |
+
<div class="section">
|
74 |
+
<img src="https://huggingface.co/spaces/EmilyWitko/Jan2025_HugginessSurveyResults/resolve/main/HugginessSurveyLogo.png" alt="Hugginess Survey Logo">
|
75 |
+
<h1>January 2025 Hugginess Survey Results</h1>
|