diff --git a/packages/firebase-admob/README.md b/packages/firebase-admob/README.md
index c691411b..4bd97152 100644
--- a/packages/firebase-admob/README.md
+++ b/packages/firebase-admob/README.md
@@ -7,7 +7,7 @@ A plugin that allows you to monetize your NativeScript app by integrating the [G
The `@nativescript/firebase-admob` plugin currently supports loading and displaying the following ad types:
- [Banner](#banner-ads)
-- [Interstitial (full-screen)](#interstitial-ad)
+- [Interstitial (full-screen)](#interstitial-ads)
- [Native](#native-ads)
- [Rewarded](#rewarded-ads)
@@ -103,8 +103,8 @@ Admob.init();
The Mobile Ads SDK is now imported and you're ready to implement an ad. Click any of the links below to get detailed implementation steps for your desired ad format.
-- [Banner](#add-a-banner-ad)
-- [Interstitial (full-screen)](#interstitial-ad)
+- [Banner](#banner-ads)
+- [Interstitial (full-screen)](#interstitial-ads)
- [Native](#native-ads)
- [Rewarded](#rewarded-ads)
@@ -112,6 +112,9 @@ The Mobile Ads SDK is now imported and you're ready to implement an ad. Click an
Banner ads are rectangular ads that appear at the top or bottom of the device screen. They stay on screen while users are interacting with the app, and can refresh automatically after a certain period. If you're new to mobile advertising, they're a great place to start.
+
+
+
#### Testing Banner ads in development mode
> **Note:** When developing your app, make sure you use test ads rather than live, production ads. Failure to do so can lead to suspension of your account. Make sure you replace the test unit ID with your ad unit ID before publishing your app.
@@ -283,10 +286,13 @@ To display a banner ad to the user, get the reference to the `BannerAd` view and
bannerView.load();
```
-### Add an Interstitial ad
+### Interstitial ads
Interstitial ads are full-screen ads that cover the interface of an app until closed by the user. They're best used at natural pauses in the flow of an app's execution, such as between levels of a game or just after a task is completed.
+
+
+
#### Testing Interstitial ads in development
> **Note:** When your app is in development mode, make sure you use test ads rather than live, production ads. Failure to do so can lead to suspension of your account. Make sure you replace the test unit ID with your ad unit ID before publishing your app.
@@ -555,6 +561,9 @@ That's it! Your app is now ready to display native ads.
Rewarded ads are ads that users have the option of interacting with [in exchange for in-app rewards](https://support.google.com/admob/answer/7313578).
+
+
+
### Testing Rewarded ads in development mode
> **Note:** When developing your app, make sure you use test ads rather than live, production ads. Failure to do so can lead to suspension of your account. Make sure you replace the test unit ID with your ad unit ID before publishing your app.