<!DOCTYPE html>
<html>
<head>
<title>Text - 08 - Customm Font</title>
<script src="https://aframe.io/releases/1.4.0/aframe.min.js"></script>
</head>
<body>
<a-scene>
<a-sky color="lightblue"></a-sky>
<a-box
width="5"
depth="1"
height="5"
position="0 2 -2.5"
color="black"
></a-box>
<a-text
position="-2.5 3 -2"
value="Lorem ipsum dolor sit amet, consectetur adipiscing elit. "
></a-text>
<a-text
position="-2.5 2 -2"
value="Lorem ipsum dolor sit amet, consectetur adipiscing elit. "
font="https://cdn.glitch.com/80978ab7-9db6-45ae-bc43-4fab16bdbb6e%2FArialBlack.fnt?v=1615736722603"
font-image="https://cdn.glitch.com/80978ab7-9db6-45ae-bc43-4fab16bdbb6e%2FArialBlack.png?v=1615736724420"
width="5"
></a-text>
<a-entity>
<a-camera></a-camera>
</a-entity>
</a-scene>
</body>
</html>