Thursday, 5 September 2013

html beginner coding with notepad

html beginner coding with notepad

Hi I study mediadeveloping and I have a question. I have put a sentence in
my html file but it won't show when I open the file in a browser.
<!doctype html>
<html lang="nl">
<head>
<meta charset="utf-8" />
<style type="text/css">
#naam {
font-weight: bold;
}
#schuin {
font-style: italic;
}
#centreren {
text-align: center;
}
</style>
<title>
opgave 3.1 Stijn Bastiaansen
</title>
</head>
<body>
Dit is mijn eerste website.
<p> Mijn naam is: <span id="naam"> Stijn Bastiaansen. </span> </p>
<p> <span id="schuin"> Ik volg deze opleding aan het ICT-Lyceum
van het Roc Tilburg. </span> </p>
<p> <span id="centreren> Tekst centreren </span> <p>
<p align="right"> of rechts uitlijnen </P>
<p>kan ik ook al.
</body>
</html>
The browser is not showing tekst centreren

No comments:

Post a Comment