By default Angular apps show a small unstyled <^>Loading…<^> at the top left corner of the browser when first loading and bootstrapping the main app component. We can easily change that default loading indicator to pretty much whatever we want.

The following works for any Angular 2+ app.

Here's what our loading screen will look like:

The example is a little over the top with the salmon-colored background and all, but it's a good example of what can easily be done.

Content in Root Component Tags

loading illustration for: Content in Root Component Tags

Notice how, in your app's main <^>index.html<^> file, the default <^>Loading…<^> is just inserted between the app's root component tags:

				
					
[label index.html]

&lt;!doctype html&gt;

&lt;html&gt;

&lt;head&gt;

 &lt;meta charset="utf-8"&gt;

 &lt;title&gt;Fancy Loading Screen&lt;/title&gt;

 &lt;base href="/"&gt;

 &lt;meta name="viewport" content="width=device-width, initial-scale=1"&gt;

 &lt;link rel="icon" type="image/x-icon" href="favicon.ico"&gt;

&lt;/head&gt;

&lt;body&gt;



 &lt;app-root&gt;Loading...&lt;/app-root&gt;



&lt;/body&gt;

&lt;/html&gt;

				
			

And if you inspect your app after it's fully loaded, that <^>Loading…<^> text is nowhere to be found, because it gets completely replaced with the content of the root component's template.

That means that we can put anything between these tags, including style definitions and it'll be completely wiped out once Angular has finished loading and bootstrapping the root component:

				
					
&lt;app-root&gt;

 &lt;style&gt;

 app-root {

 color: purple;

 }

 &lt;/style&gt;

 I'm a purple loading message!

&lt;/app-root&gt;

				
			

We don't have to worry about these styles affecting our app after it's loaded because everything gets completely discarded.

Now you can go crazy there and do just about anything. An idea would be to include some kind of CSS or SVG spinner.

Here in our example, we give our page a pink background, we center our loading message with Flexbox, give it a prettier system font, and we even add a fancy animation to the ellipsis:

				
					
&lt;app-root&gt;

 &lt;style&gt;

 app-root {

 display: flex;

 justify-content: center;

 align-items: center;

 height: 100vh;



 color: pink;

 text-transform: uppercase;

 font-family: -apple-system,

 BlinkMacSystemFont,

 "Segoe UI",

 Roboto,

 Oxygen-Sans,

 Ubuntu,

 Cantarell,

 Helvetica,

 sans-serif;

 font-size: 2.5em;

 text-shadow: 2px 2px 10px rgba(0,0,0,0.2);

 }

 body {

 background: salmon;

 margin: 0;

 padding: 0;

 }



 @keyframes dots {

 50% {

 transform: translateY(-.4rem);

 }

 100% {

 transform: translateY(0);

 }

 }



 .d {

 animation: dots 1.5s ease-out infinite;

 }

 .d-2 {

 animation-delay: .5s;

 }

 .d-3 {

 animation-delay: 1s;

 }

 &lt;/style&gt;



 Loading&lt;span class="d"&gt;.&lt;/span&gt;&lt;span class="d d-2"&gt;.&lt;/span&gt;&lt;span class="d d-3"&gt;.&lt;/span&gt;

&lt;/app-root&gt;