# give/4.16.9/src/ServiceProviders/GlobalStyles.php

GiveWP – Donation Plugin and Fundraising Platform, version 4.16.9. 21 lines.

- Page: https://pluginprobe.com/plugins/give/4.16.9/code/src/ServiceProviders/GlobalStyles.php
- Raw: https://pluginprobe.com/plugins/give/4.16.9/raw/src/ServiceProviders/GlobalStyles.php
- Modified: 2023-01-18T19:19:38+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/give/4.16.9/code/src/ServiceProviders/GlobalStyles.php#L10-L20`.

```php
<?php

namespace Give\ServiceProviders;

class GlobalStyles implements ServiceProvider
{
    /** @inheritDoc */
    public function register()
    {
        // This section intentionally left blank.
    }

    /** @inheritDoc */
    public function boot()
    {
        add_action('admin_enqueue_scripts', function() {
            wp_register_style('givewp-admin-fonts', 'https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&display=swap');
        }, -1);
    }
}

```
