Skip to content
Extraits de code Groupes Projets
Valider c3b75924 rédigé par Koumaarashankar JAYASHANKAR's avatar Koumaarashankar JAYASHANKAR
Parcourir les fichiers

Initial Work

parent
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
<?php
include("Miseenpage.php");
entete("Bienvenue à Hall");
?>
<p>Bienvenue sur notre site de réservation en ligne<br/>
<a href="login.php">Se connecter</a><br/>
<a href="creation.php">Créer un nouveau compte</a></p>
<?php
pied();
?>
\ No newline at end of file
<!DOCTYPE html>
<html>
<head>
<title>Bienvenue à Hall</title>
<meta charset="UTF-8"/>
</head>
<body>
<h1 style="text-align:center" >Hall Welcomes You</h1>
<p>Bienvenue sur la site de réservation de Hall<br/>
<a href="login.html">Se connecter</a><br/>
<a href="creation.html">Créer un nouveau compte</a></p>
</body>
</html>
<?php
function enTete($titre)
{
print "<!DOCTYPE html>\n";
print "<html>\n";
print "<head>\n";
print "<meta charset=\"utf-8\" />\n";
print "<title>$titre</title>\n";
print "<link rel=\"stylesheet\" href=\"style.css\"/>\n";
print "</head>\n";
print "<body>\n";
print "<h1> $titre </h1>\n";
}
function pied(){
print "</body>\n";
print "</html>\n";
}
?>
\ No newline at end of file
Fichier ajouté
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Veuillez vous inscrire ou vous pour commenter