home.htm
codice:
<!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento senza titolo</title>
<link rel="stylesheet" type="text/css" href="style.css" media="screen" />
</head>
<body>
<h1>Home Page</h1>
<div id="menu">
<ul>[*]Home[*]Dove andiamo[*]Chi Siamo[*]Cosa Facciamo[/list]
</div>
<div id="home_div1">Inserire qui il contenuto per id "home_div1"</div>
</body>
</html>
chi_siamo.htm
codice:
<!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento senza titolo</title>
<link rel="stylesheet" type="text/css" href="style.css" media="screen" />
</head>
<body>
<h1>Chi Siamo</h1>
<div id="menu">
<ul>[*]Home[*]Dove andiamo[*]Chi Siamo[*]Cosa Facciamo[/list]
</div>
<div id="siamo_div1">Inserire qui il contenuto per id "siamo_div1"</div>
</body>
</html>
cosa_facciamo.htm
codice:
<!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento senza titolo</title>
<link rel="stylesheet" type="text/css" href="style.css" media="screen" />
</head>
<body>
<h1>Cosa Facciamo</h1>
<div id="menu">
<ul>[*]Home[*]Dove andiamo[*]Chi Siamo[*]Cosa Facciamo[/list]
</div>
<div id="facciamo_div1">Inserire qui il contenuto per id "facciamo_div1"</div>
</body>
</html>
dove_andiamo.htm
codice:
<!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento senza titolo</title>
<link rel="stylesheet" type="text/css" href="style.css" media="screen" />
</head>
<body>
<h1>Dove Andiamo</h1>
<div id="menu">
<ul>[*]Home[*]Dove andiamo[*]Chi Siamo[*]Cosa Facciamo[/list]
</div>
<div id="andiamo_div1">Inserire qui il contenuto per id "andiamo_div1"</div>
</body>
</html>
style.css
codice:
@charset "utf-8";
/* CSS Document */
h1 {
text-align: center;
font-weight: bold;
color: #000000;
}
#home_div1 {
background-color: #CC6633;
width: 200px;
height: 200px;
}
#facciamo_div1 {
background-color: #00FF00;
width: 200px;
height: 200px;
}
#siamo_div1 {
background-color: #FFFF00;
width: 200px;
height: 200px;
}
#andiamo_div1{
background-color: #00FFFF;
width: 200px;
height: 200px;
}
#menu {
background-color:#FFCCFF;
color: #000000;
width: 150px;
list-style: none;
}
#menu a:link {
color: #000000;
text-decoration: none;
}
#menu a:visited {
text-decoration: none;
color: #0000FF;
}
#menu a:hover {
text-decoration: none;
color: #FF0000;
}
#menu a:active {
text-decoration: none;
color: #CC9900;
}