super:embed<style>
.gumroad-follow-form-embed {
zoom: 1;
display: flex;
}
.gumroad-follow-form-embed * {
margin: 0;
border: 0;
padding: 0;
outline: 0;
box-sizing: border-box !important;
}
.gumroad-follow-form-embed input {
flex: 1;
margin-right: .75rem;
outline: none;
font-family: "Mabry Pro", sans-serif;
padding: 0.875rem 1rem;
font-size: 1rem;
line-height: 1.3;
border: solid 0.0625rem #000;
border-radius: 0.25rem;
display: block;
width: 100%;
background-color: #ffffff;
color: #000;
}
.gumroad-follow-form-embed button {
background: #000;
color: #fff;
font-size: 1rem;
line-height: 1.3;
padding: 0.875rem 1rem;
border: solid 0.0625rem #000;
border-radius: 0.25rem;
font-family: "Mabry Pro", sans-serif;
cursor: pointer;
width: -webkit-fit-content;
width: -moz-fit-content;
width: fit-content;
transition: all 0.14s ease-out;
}
.gumroad-follow-form-embed button:hover {
background-color: #ff90e8;
color: #000;
transform: translate(-0.25rem, -0.25rem);
box-shadow: 4px 4px 0px #000;
}
</style>
<style class="darkreader darkreader--sync" media="screen">
</style>
<form action="https://app.gumroad.com/follow_from_embed_form" class="form gumroad-follow-form-embed" method="post">
<input name="seller_id" type="hidden" value="6023991977115">
<input name="email" placeholder="Your email address" type="email">
<button data-custom-highlight-color="" type="submit">Follow
</button>
</form>
super:embed<a class="weatherwidget-io" href="https://forecast7.com/en/26d12n80d14/fort-lauderdale/?unit=us" data-label_1="FORT LAUDERDALE" data-label_2="WEATHER" data-icons="Climacons Animated" data-days="3" data-theme="pure" >FORT LAUDERDALE WEATHER</a>
<script>
!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src='https://weatherwidget.io/js/widget.min.js';fjs.parentNode.insertBefore(js,fjs);}}(document,'script','weatherwidget-io-js');
</script>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:400,700|Montserrat:900">
<title>Document</title>
<style>
body{
background-color: white;
}
#timer {
color: #eeeeee;
text-align: center;
text-transform: uppercase;
font-family: 'Lato', sans-serif;
font-size: .7em;
letter-spacing: 5px;
}
.days, .hours, .minutes, .seconds {
display: inline-block;
padding: 20px;
width: 100px;
border-radius: 5px;
}
.days {
background: #EF2F3C;
}
.hours {
background: #eeeeee;
color: #183059;
}
.minutes {
background: #276FBF;
}
.seconds {
background: #F0A202;
}
.numbers {
font-family: 'Montserrat', sans-serif;
color: #183059;
font-size: 4em;
text-align: center;
}
.white {
position: absolute;
background: #eeeeee;
height: 85px;
width: 75px;
left: 30%;
top: 2%;
}
.red {
position: absolute;
background: #EF2F3C;
left: 18%;
top: 9%;
height: 65px;
width: 70px;
}
.blue {
position: absolute;
background: #276FBF;
height: 80px;
width: 80px;
left: 60%;
top: 5%;
}
</style>
</head>
<body>
<div id="timer">
<div class="days">
<div id="days" class="numbers "> </div>days</div>
<div class="hours">
<div id="hours" class="numbers"> </div>hours</div>
<div class="minutes">
<div id="minutes" class="numbers"> </div>minutes</div>
<div class="seconds">
<div id="seconds" class="numbers"> </div>seconds</div>
</div>
</div>
</body>
<script>
const year = new Date().getFullYear();
const myDate = new Date('March 31, 2023, 10:45:00');
console.log(myDate);
// countdown
let timer = setInterval(function() {
// get today's date
const today = new Date().getTime();
// get the difference
const diff = myDate - today;
// math
let days = Math.floor(diff / (1000 * 60 * 60 * 24));
let hours = Math.floor((diff % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
let minutes = Math.floor((diff % (1000 * 60 * 60)) / (1000 * 60));
let seconds = Math.floor((diff % (1000 * 60)) / 1000);
// display
document.getElementById("days").innerHTML=days
document.getElementById("hours").innerHTML=hours
document.getElementById("minutes").innerHTML=minutes
document.getElementById("seconds").innerHTML=seconds
}, 1);
</script>
</html>