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.
body {
margin:0px;
text-align:center;
}
#menu {
position:relative;
width:90%;
margin:0px auto 20px auto;
}
#menu .row {
position:relative;
clear:both;
}
#menu .cell {
position:relative;
width:33%;
float:left;
}
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"[URL unfurl="true"]http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">[/URL]
<html xmlns="[URL unfurl="true"]http://www.w3.org/1999/xhtml">[/URL]
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
</head>
<body>
<div id="menu">
<div class="row">
<div class="cell">Some Text</div>
<!-- cell -->
<div class="cell">Some Text</div>
<!-- cell -->
<div class="cell">Some Text</div>
<!-- cell -->
</div>
<!-- row -->
<div class="row">
<div class="cell">Some Text</div>
<!-- cell -->
<div class="cell">Some Text</div>
<!-- cell -->
<div class="cell">Some Text</div>
<!-- cell -->
</div>
<!-- row -->
<div class="row">
<div class="cell">Some Text</div>
<!-- cell -->
<div class="cell">Some Text</div>
<!-- cell -->
<div class="cell">Some Text</div>
<!-- cell -->
</div>
<!-- row -->
</div>
<!-- menu -->
</body>
</html>