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.
<style type="text/css">
<!--
/* ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| */
/* GLOBAL : DEFAULT */
/* _________________________________________________________________________ */
/* _________________________________________________________________________ */
body {
background-color: #ffffff;
margin: 0px;
}
body, input, textarea, select {
font-family: Arial, Verdana, Helvetica, sans-serif;
font-size: 0.9em;
}
/* ----------------------------------------------------------------------- */
-->
</style>
/* ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| */
/* GLOBAL : DEFAULT */
/* _________________________________________________________________________ */
/* _________________________________________________________________________ */
body {
background-color: #ffffff;
margin: 0px;
}
body, input, textarea, select {
font-family: Arial, Verdana, Helvetica, sans-serif;
font-size: 0.9em;
}
/* ----------------------------------------------------------------------- */
<?php
$css_array = file("style_with_tags.css");
echo nl2br(print_r($css_array, true));
/*
returns
Array
(
[0] =>
)
*/
echo "<br /><br /><br /><br />";
$css_array = file("style_without_tags.css");
echo nl2br(print_r($css_array, true));
?>
echo nl2br(print_r($css_array, true));
echo "<pre>\r\n";
foreach($css_array as $line){
echo htmlspecialchars($line);
}
echo "</pre>";