100.00% of the height of the page is visible.
There are 0 <button>, 17
            <input>, 0 <a>, 1 <form>
Here is a summary for chunks of the HTML code on the
            page:
The provided code is part of an unsubscribe webpage where users can manage their email preferences.
            Here are some key elements:
1. **Form Structure**: The form with `name="SubscribeForm"`
            uses the action `/update_preferences` with the method `GET`. It contains hidden inputs to manage
            user-specific data like `EmailAddress` and `SiteID`.
2. **Checkboxes**: Several checkboxes represent
            various email notice categories (e.g., "Electric Vehicles (EV)", "Financial Assistance
            Programs"). These are used for users to select which notices to subscribe to or unsubscribe from. The
            `onclick` event for these checkboxes calls the `resetUnsubscribe()` JavaScript function.
3.
            **Unsubscribe Checkbox**: There's a special checkbox for unsubscribing from all marketing emails
            (`name="Unsubscribe"`). Selecting this triggers `resetList()`, which unchecks other
            checkboxes.
4. **JavaScript Functions**:
 - `resetList()`: Unchecks all campaign-related
            checkboxes when the unsubscribe-all option is selected.
 - `resetUnsubscribe()`: Unchecks the
            unsubscribe-all checkbox if any specific notice checkbox is selected or deselected.
5. **User
            Interaction**: A submit button with the value "Accept >>" allows the user to save their
            selections. It uses classes to change appearance on hover.
This code effectively provides users with
            the option to selectively unsubscribe from email notifications.
Below is a screenshot of a webpage
            from the email Unsubscribe link.