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.
<div style="padding-left: 10px;"></div>
<div style="width: 100%;">
<div style="margin-right: 10px; border: 1px solid black;">
stuff
</div>
</div>
<!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>
<head>
<title>Untitled</title>
<style type="text/css">
#green { border: 1px solid green; }
#blue {
width: 100px;
float: right;
border: 1px solid blue;
}
#red {
width: 250px;
float: right;
border: 1px solid red;
}
#clear { clear: both; }
</style>
</head>
<body>
<div id="green">
<div id="red">red</div>
<div id="blue">blue blue</div>
<div id="clear"></div>
</div>
</body>
</html>
<!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] lang="en" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<title>Soniclnd's Page</title>
<link rel="stylesheet" href="styles.css" type="text/css" />
<link rel="shortcut icon" href="sonic.ico">
<style type="text/css">
#holder {
border: 1px solid white;
height: 50px;
width: 100%;
}
#blue {
width: 100px;
float: right;
border: 1px solid blue;
height: 100%;
}
#red {
width: 250px;
float: right;
border: 1px solid red;
height: 100%;
}
#green {
height: 100%;
border: 1px solid green;
margin-right: 354px;
}
</style>
</head>
<body>
<div id="holder">
<div id="red">red</div>
<div id="blue">blue blue</div>
<div id="green">something</div>
</div>
</body>
</html>