mirror of
https://github.com/jlengrand/closeme.git
synced 2026-03-10 08:11:23 +00:00
32 lines
778 B
HTML
32 lines
778 B
HTML
<html>
|
|
<head>
|
|
<title>CloseMe</title>
|
|
<style>
|
|
body{
|
|
width: 300px;
|
|
height: 16px;
|
|
font-family: 'Raleway', sans-serif;
|
|
}
|
|
|
|
div{
|
|
display: inline-block;
|
|
}
|
|
|
|
span{
|
|
font-weight: bolder;
|
|
}
|
|
|
|
img{
|
|
margin-right: 15px;
|
|
vertical-align: middle;
|
|
}
|
|
</style>
|
|
<link href="https://fonts.googleapis.com/css?family=Raleway" rel="stylesheet">
|
|
<script src="popup.js"></script>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<img src="./images/cancel_16.png" alt="closeme logo"/>CloseMe closed <span id="amount">X</span> pop-up(s) for you so far!
|
|
</div>
|
|
</body>
|
|
</html> |