<input class="input" type="radio" name="tabs" id="tab-1" />
<input class="input" type="radio" name="tabs" id="tab-2" />
<div class="content content-1">content 1</div>
<div class="content content-2">content 2</div>
.content { display: none; }
#tab-1:checked ~ .content-1 {display: block;}
#tab-2:checked ~ .content-2 {display: block;}
.green-wrapper {
margin-left: calc(50% - 1300px/2);
}
<script src="https://smtpjs.com/v3/smtp.js">
</script>
Email.send({
Host : "smtp.yourisp.com",
Username : "username",
Password : "password",
To : 'them@website.com',
From : "you@isp.com",
Subject : "This is the subject",
Body : "And this is the body"
}).then(
message => alert(message)
);