<html xmlns="http://www.w3.org/1999/xhtml">
<head>
</head>
<body>
<p>XHTML is easy!</p>
</body>
</html>
S INTAX DASAR HTML
<html>
<head>
<title>My web Pages</title>
</head>
<body>
<p>HTML is easy!</p>
</body>
</html>
ATURAN S INTAX XHTML
Contoh:
<p class= "greeting"> Heloo, world!</p>
XHTML VALIDATOR
Contoh URL :
D EFINISI CSS
<head>
<style type="text/css">
h2 { color: red; }
p { color: gray; }
.info {background:#cccccc; border:1px}
.label {margin:5px; color:#efefef}
</style>
</head>
E XTERNAL S TYLE S HEETS
Model adalah terbaik yaitu menempatkan aturan CSS terpisah dengan
dokumen XHTML, style sheet external langsung terhubung dengan
dokumen.
External style sheet adalah file text disimpan dengan ektensi .css.
<head>
<link rel="stylesheet“
type="text/css" href="styles.css" />
</head>
T ERIMA K ASIH