CSS (styl.css):
Kód: Vybrať všetko
body {
text-align: center;
margin:0 auto;padding:0;
}
#hlavicka {
margin-bottom: 20px;
width: 900px;
height: 100px;
background-color: #fde61e;
background-image: url('../obrazky/odtien.png');
-moz-border-radius: 0px 0px 22px 22px;
-webkit-border-radius: 0px 0px 22px 22px;
}
#wrapper {
width: 900px;
height: 500px;
background-color: #fde61e;
border-top-left-radius: 80px 120px;
border-top-right-radius: 60px 250px;
border-bottom-left-radius: 22px;
border-bottom-right-radius: 22px;
}Kód: Vybrať všetko
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>MegaMind</title>
<link href="styl.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="telo">
<div id="hlavicka">
</div>
<div id="wrapper">
</div>
</div>
</body>
</html>