diff --git a/examples/web/react/app.css b/examples/web/react/app.css
index f666378e582f6fccdc584adcaefd5259f463b1de..4c1786700a5d9be248c7a518c125744177b3972e 100644
--- a/examples/web/react/app.css
+++ b/examples/web/react/app.css
@@ -4,6 +4,10 @@
     margin: 0px 0px 0px 0px;
 }
 
+.app h3 {
+    margin: 10px 0px 10px 0px;
+}
+
 .app .display-container {
     margin-top: 78px;
 }
diff --git a/examples/web/react/app.tsx b/examples/web/react/app.tsx
index 8f0914436954f48fb268a180f76f3f074f5ae03a..dc633d678439b52f83028d7becdcaf51c9425f49 100644
--- a/examples/web/react/app.tsx
+++ b/examples/web/react/app.tsx
@@ -510,6 +510,7 @@ export const App: FC<AppProps> = ({ emulator, backgrounds = ["264653"] }) => {
                 )}
                 {debugVisible && (
                     <Section>
+                        <h3>VRAM Tiles</h3>
                         <Tiles
                             getTile={(index) => emulator.getTile(index)}
                             tileCount={384}