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.
<html>
<head>
<style>
li {padding-left: 90px;}
.test {padding-left: 30px;}
</style>
</head>
<body>
This calls the <li> style command directly, it will move any and all <li>'s 90 px. in:
<li> This is moved in 90 px.</li>
<li>This is it again</li>
<li>This is over</li>
<li>This is begining</li>
<br><br><br>
This calls the "test" class and will only move that amount of px. in when the "test" class is called:
<li class="test">This is 60 px. in</li>
<li class="test">This is cool</li>
<li class="test">This is fun also</li>
</body>
</html>