Are you still with us? requinix is a pro. You are in good hands.
Meantime, margins is interesting because do you want margins or not? I see a double break after the body tag.
<body><br><br/>
incidentally, html5 does not require the ending slash. vide xhtml.
since you are already using css, why not add margin control?
<span style="font-family:'Comic Sans MS', Comic, Monospace; margin: 8px 8px">
the center tag is deprecated, is it not? Again, why not use css?
align: center; text-align: center;
let us know if you need further assistance. I will also post the entire script from the google drive link. I hope that it is okay to do so. Please forgive me if it is not okay to post the aftenrenlille.php code.
<?php ini_set('default_socket_timeout', 5); ?>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>AU-INFO</title>
<style type="text/css">
#dagensret{
//font-size:10px;
}
.food{
// color: green;
font-size:15px;
}
</style>
</head>
<body><br><br/>
<span style="font-family:'Comic Sans MS', Comic, Monospace">
<center>
<span style="font-size:25pt">
<?php
// 11
// remember to remove the ; from the beginning of extension=php_soap.dll in php.ini
$cli= new SoapClient('https://xxxxxxxxxxx.dk/SPService.asmx?WSDL');
//$res = $cli->__soapCall('DagensMenu',array());
// $xmlstr = $res->DagensMenuResult->any;
$simple = simplexml_load_string($xmlstr);
$text = $simple->Menu->Tekst;
echo "AFTENRENGĂRING ";
echo $text."";
?>
<!--Overskrift-->
<span style="font-size:10pt">
<!--Overskrift-->
<!--Vegatare-->
<span style="font-size:25pt">
<!--->
<?php
$simple = simplexml_load_file('https://xxxxxxxxxxx/SPService.asmx/AktuelleOmraadeRengoering');
$text = $simple->Aktivitet->Navn;
// slette + tegn AU
$text = str_replace('+', '', $simple->Aktivitet->Navn);
echo $text;
?>
</body>
</html>
<!--Menu herover-->
</html>