> For the complete documentation index, see [llms.txt](https://docs.msquared.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.msquared.io/creation/unreal-development/features-and-tutorials/web-browser/loading-embedded-pages.md).

# Loading embedded pages

This guide assumes you've followed [Setup the browser widget](/creation/unreal-development/features-and-tutorials/web-browser/setup-the-browser-widget.md).

You can load webpages into your browser, where the content is packaged into the game.

{% hint style="info" %}
You must place content inside a folder called `WebUI` for it to be packaged correctly.
{% endhint %}

### Create the HTML page

Create a folder in your project's content folder called `WebUI` .

<figure><img src="/files/W8cilqflb9bUIcHZVgfS" alt=""><figcaption><p>The WebUI folder.</p></figcaption></figure>

Open this folder in the Windows Explorer and create a file inside called `index.html`.

Paste this text in the file:

```html
<!DOCTYPE html>
<html lang="en">
<head>
    <style>
        @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400&display=swap');
        body {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            font-family: 'Roboto', sans-serif;
            font-size: 4rem;
            background: #ffffff;
        }
    </style>
</head>
<body>
    Hello World!
</body>
</html>
```

### Load the HTML page into the browser

Add the following node to your browser widget blueprint on `Event Construct`:

{% @blueprintue-embed/embed url="<https://nextjs-boilerplate-jl63.vercel.app/b91f9fe8-63df-4135-8d82-2f46f0fdb81f>" %}

Once you load in with PIE you should see the page loaded in your browser, for example in 3D space by following [In-world browser](/creation/unreal-development/features-and-tutorials/web-browser/in-world-browser.md):

<figure><img src="/files/Swb4ix8Bbf9NkkwfG5gY" alt=""><figcaption></figcaption></figure>
