wednesday-emails/email.html
2025-03-06 20:55:36 +00:00

55 lines
1.5 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<style>
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
background-image: url("https://tgj.services/assets/ahhhh-its-wednesday-my-dudes.gif")
}
button{
transition-duration: 0.15s;
border-radius: 4px;
padding: 6px 24px;
background-color: skyblue;
color:black;
border: 2px solid slategrey;
}
.main{
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
background-color: whitesmoke;
border-radius: 20px;
padding: 10px;
width: 500px;
text-align: center;
}
.addressPanel{
float:left;
text-align: left;
max-width: 200px;
}
</style>
</head>
<body>
<div class="main">
<h1>
<u>ITS WEDNESDAY MY DUDES!!!!</u>
</h1>
<div style=width:100%;height:240px;>
<img src="https://tgj.services/assets/wednesday.jpg" width="100%" height="100%"><img>
</div>
<hr>
<br>
<div>
<p>
ITS WEDNESDAY
</p>
</div>
</div>
</body>
</html>