Jezik za izradu web stranica.
< !DOCTYPE html>
<html>
<head>
<title> Naslov </title>
</head>
<body>
<h1> Ovo je heading </h1>
<p> Ovo je paragraph </p>
</body>
</html>
Jezik za stilizovanje web stranica.
body {
     background-color: #4682B4;
}
h1 {
     text-align: center;
     color: white;
}
p {
     font-family: arial;
     font-size: 20px;
     color: yellow;
}