46 lines
844 B
HTML
46 lines
844 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Test</title>
|
|
<meta name="author" content="xgiovio"/>
|
|
<meta name="description" content="A simple test page"/>
|
|
<meta name="keywords" content="Ormai google non se le fila piu"/>
|
|
<meta name ="robots" content="index"/>
|
|
<meta charset="utf-8"/>
|
|
<!-- <link rel="stylesheet" href="style.css" type="text/css" /> !-->
|
|
|
|
<style type="text/css">
|
|
|
|
p {
|
|
|
|
background-color: #3366CC;
|
|
font-size: 18pt;
|
|
font-family: Arial;
|
|
text-align: right;
|
|
color: green;
|
|
|
|
|
|
|
|
}
|
|
|
|
p > span {
|
|
|
|
color: red;
|
|
|
|
}
|
|
|
|
|
|
|
|
</style>
|
|
|
|
|
|
|
|
</head>
|
|
<body>
|
|
<p> Gli <span>indirizzi</span> attualmente in uso sono prevalentemente quelli di classe A, B e C. Questi indirizzi non sono mai dati singolarmente, ma per motivi di organizzazione di rete sono dati in blocchi di <span>indirizzi</span> adiacenti.
|
|
</p>
|
|
|
|
|
|
|
|
</body>
|
|
</html> |