כדי שהוא ידבק למעלה תוסיף את זה ל- CSS:
קוד:
body {
margin:0;
padding:0px;
}
כדי לעצב את הבאר תוסיף את זה ל- css:
קוד:
.toolbar {
background: #000000;
font-family: Arial;
font-size: 12px;
color: #ffffff;
height: 15px;
width: 100%;
margin:0;
padding: 5px;
text-align:center;
}}
כדי לעצב את הלינקים בטוח הבאר, תוסיף את זה ל- css:
קוד:
.toolbar a:link,
.toolbar a:visited,
.toolbar a:active,
.toolbar a:hover {
color: #ffffff;
text-decoration: none;
}
כדי להציג את באר תוסיף את הקוד הזה לאתרך, חושב שהוא יהיה מעל כל התוכן:
קוד:
<div class="toolbar">
<a href="#">לינק ראשון</a> .
<a href="#">לינק שני</a> .
<a href="#">לינק שלישי</a> .
<a href="#">לינק רביעי</a> .
<a href="#">לינק חמישי</a>
</div>