newsletter/template.html

23 lines
569 B
HTML
Raw Permalink Normal View History

2023-03-22 11:03:06 -04:00
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
body{
background-color: #202020;
color:white;
}
.report-content{
display:block;
border-radius: 1em;
border: 0.125em solid white;
padding: 0.25em 0.5em;
margin-top: 1em;
}
</style>
</head>
<body>
<div class="report-content">sample report</div>
<div class="report-content">sample report</div>
</body>
</html>