Button Instructions
Enter the page you want to add the button to
Click the + button on the left to access the Elements
Click the HTML button
Paste this code and make the edits to the bolded items below to point the button to where you want it to land.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Registration Button</title>
<style>
/* Style for the button */
.access-button {
background-color: #34864E;
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">WHAT TEXT YOU WANT ON THE BUTTON</a>
</body>
</html>