Webbserverprogrammering 1

Show sourcecode

The following files exists in this folder. Click to view.

webbsrvprg/

bilder/
comments.php
exercises/
exercises.php
gya/
img/
incl/
index-no-include.php
index.css
index.js
index.php
indexOld.php
source.php
style/
viewsource.php

index.php

31 lines UTF-8 Windows (CRLF)
<?php
include("incl/config.php");
$title "Webbserv1 :Start";
$pageId "start";
$pageStyle '
figure { 
 border-radius: 10px;
 border-color:#333;
 box-shadow: 10px 10px 5px #888;
}
'
;
?>
<?php 
include("incl/header.php"); ?>

<!-- sidans huvudinnehåll  -->
<div id="content">
<article class="justify border">
    <h1>Start</h1>
    <figure class="right top">
        <img src="img/WIN_20240910_11_36_08_Pro.jpg" alt="Närbild på Teo Rutisson" style="width: 20vw;">
        <figcaption>
            <p>En bild på Teo.</p>
        </figcaption>
    </figure>
    <p>Välkommen till Teos webbsida för Webbserverprogrammering 1 :)      
    </p>

</article>
</div>

<?php include("incl/footer.php"); ?>