0% found this document useful (0 votes)
13 views

Lucrare de Laborator. Construirea Unui Site Cu Blocuri

This document describes how to construct a website using DIV blocks. It includes CSS code to style different sections like the header, navigation, menu, content, and footer by assigning them IDs and specifying properties like background color, width, height, and float.

Uploaded by

Tina Cris
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
13 views

Lucrare de Laborator. Construirea Unui Site Cu Blocuri

This document describes how to construct a website using DIV blocks. It includes CSS code to style different sections like the header, navigation, menu, content, and footer by assigning them IDs and specifying properties like background color, width, height, and float.

Uploaded by

Tina Cris
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

Lucrare de laborator.

Construirea unui site cu blocuri <DIV></DIV>


<html>
<head>
<title> … </title>
<style>
body {
background: #f3f2f3;
color: #000000;
font-family: Trebuchet MS, Arial, Times New Roman;
font-size: 12px;
}
#wrapper {
background: #FFFFFF;
margin: 60px auto;
width: 900px;
height: 1024px;
} #header {
background: #838283;
height: 200px;
width: 900px;
}
#navigation {
background: #a2a2a2;
width: 900px;
height: 20px;
} #menu {
background: #333333;
float: left;
width: 200px;
height: 624px;
}
#content {
background: #d2d0d2;
width: 900px;
height: 624px;
}
#footer {
background: #838283;
height: 180px;
width: 900px;
}

</style>
</head>
<body>
<div id="wrapper">
<div id="header">… </div>
<div id="navigation">… </div>
<div id="menu">… </div>
<div id="content">… </div>
<div id="footer">… </div>
</div>
</body>
</html>

You might also like