HTML/CSS/Style Basics/Style file

Материал из Web эксперт
Перейти к: навигация, поиск

Link the style outside html document

   <source lang="html4strict">

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html>

<head>
 <title>Link the style outside html document</title>
 <link href="1-2.css" rel="stylesheet" type="text/css" />
</head>
<body>

Content Page Title

Content Item Title

Content goes here.

Ads go here.

</body> </html> body {

margin: 0;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: .75em;
padding: 0;

}

  1. banner {
margin-top: 0;
margin-bottom: 0;
background-color: #900;
border-bottom: solid 1px #000;
padding: 5px 5px 5px 10px;
line-height: 75%;
color: #fff;

}

  1. sub_banner {
background-color: #ccc;
border-bottom: solid 1px #999;
font-size: .8em;
font-style: italic;
padding: 3px 0 3px 10px;

}

  1. content {
position: absolute;
margin-left: 18%;
width: 40%;
top: 100px;
padding: 5px;

}

  1. nav1 {
position: absolute;
width: 30%;
left: 60%;
top: 100px;
padding: 5px;

}

  1. nav2 {
position: absolute;
padding: 5px 5px 5px 10px;
top: 100px;
width: 15%;

}

  1. footer {
text-align: center;
padding-top: 7em;

} .warning {

font-weight: bold;
color: red;

} .title {

font-size: 120%;

} .content {

font-family: Verdana, Arial, sans-serif;
margin-left: 20px;
margin-right: 20px;

} .footer {

font-size: 75%;

}

</source>