Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<script language="javascript" type="text/javascript">
<!--
var words = "some words";
var count = 0;
while (count < words.length) {
document.write(words.charAt(count) + '<br>');
count++;
}
-->
</script>
<html>
<head>
<style>
#verticaltext {
position: absolute;
left: 200px;
top: 200px;
writing-mode: tb-rl;
filter: flipv fliph;
}
</style>
</head>
<body>
<div id="verticaltext">This is Vertical Text</div>
</body>
</html>