Files
closeme/popup.html
Julien Lengrand-Lambert a37b12b005 Add pop-up and images
2019-02-08 16:00:56 +01:00

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>