Css + html kullanarak şekildeki gibi basit 3 linkli bir site oluşturun. Linklere tıklandığında içerik kutusunda o linke ait bir içerik görüntüleyen kodu yazın.
Kod:
#kapsayıcı {
width:999px;
margin:auto;
}
#ust{
height:100px;
width:900px;
border-radius:10px;
margin:15px;
background-color:red;
}
#alt{
height:500px;
width:900px;
border-radius:10px;
margin:15px;
background-color:aqua;
}
.menu{
list-style-type:none;
margin:30px;
padding:5px;
}
.menu li {
display:inline;
}
.menu a {
text-decoretion:none;
padding:3px20px;
color:white;
background-color:black;
}
.menu a:hover {
color:#ffffff;
background-color:#2586D7;
}