XHTML

From Nasza Pasja - Programowanie

XHTML to język do tworzenia stron www, następca HTMLa

Przykładowy dokument XHTML

Pusty na dodatek :)


<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<!-- Tytul strony -->
<title></title>

<!-- Tagi META -->
<meta http-equiv="content-type" content="application/xhtml+xml; charset=utf-8" />
<meta name="robots" content="index, follow" />


<meta name="description" content="" />
<meta name="keywords" content="" />
<meta name="author" content="Unknown"/>

<!-- Favicon -->
<link rel="shortcut icon" href="" />

<!-- CSS -->
<link rel="stylesheet" href="" media="screen,projection" type="text/css" />
<link rel="stylesheet" href="" media="print" type="text/css" />

<!-- RSS -->

<link rel="alternate" href="" title="RSS Feed" type="application/rss+xml" />

</head>

<body>
Tresc strony
</body>
</html>