Spaces:
Running
Running
File size: 1,122 Bytes
f51ff8f |
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 |
<!DOCTYPE html>
<html>
<head>
<title>Like History</title>
<style>
.container {
display: flex;
justify-content: center;
align-items: center;
width: 600px;
height: 400px;
}
.line-chart {
display: block;
margin-left: auto;
margin-right: auto;
padding-right: 20pt;
width: 600px;
height: 400px;
}
h2 {
text-align: center;
}
.website-link {
font-family: xkcd;
display: block;
/** don't show underline**/
text-decoration: none;
/** color gray **/
color: #666666;
/** bigger size **/
font-size: 16px;
/** right **/
text-align: right;
/** margin right **/
margin-right: 10px;
}
</style>
</head>
<body>
<!-- Your popup's HTML content -->
<div class="container">
<svg class="line-chart"></svg>
</div>
<a class="website-link" style="font-family: 'xkcd';" href="https://like-history.ai"
target="_blank"
>🤗 like-history.ai</a>
<script src="./chart.xkcd.min.js"></script>
<script src="./popup.js"></script>
</body>
</html> |