Create an iframe button
Use this code if a disctrict wants a button vs. a hyperlink to link to an external site like a "PAY BILL"
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Access Button</title>
<style>
/* Style for the button */
.access-button {
background-color: #0b558d;
color: white !important;
padding: 10px 20px;
text-decoration: none;
display: inline-block;
font-size: 16px;
cursor: pointer;
border-radius: 5px;
}
</style>
</head>
<body>
<!-- Button linking to the provided website -->
<a href="INSERT LINK" class="access-button">TEXT TO DISPLAY</a>
</body>
</html>