Show sourcecode
The following files exists in this folder. Click to view.
comments.php
exercises/
exercises.php
img/
incl/
index-no-include.php
index.html
index.php
ovningar/
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/ab6761610000e5eb73d4facbd619ae025b5588c7.jfif" alt="FWAEH" width="300px" height="300px">
<figcaption>
<p>FWAEH</p>
</figcaption>
</figure>
<p>Hej och välkommen till Seth's samlingssida i kursen webbserverprogrammering 1.
</p>
</article>
</div>
<?php include("incl/footer.php"); ?>