After installation you can write your first webpage.
- Find file yourcode.php.
- Open yourcode.php to edit your new webpage.
- Add code:
1234567891011
<?php
$seo
=
new
headerSeo;
//add minimal seo and add opening HTML tag
$seo
->encode();
//add page encoding to UTF-8
$seo
->robots();
//add support for bots control
echo
$seo
->save();
//generate meta tags
?>
<!-- HTML BODY -->
<body>
HELLO WORLD
</body>
</html>
- Save yourcode.php and open your example.com first page where is installed OpenSencillo.





