44 lines
No EOL
762 B
HTML
44 lines
No EOL
762 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<style>
|
|
.nav {
|
|
height: 40px;
|
|
width: 80%;
|
|
margin: auto;
|
|
}
|
|
|
|
.nav .left {
|
|
float: left;
|
|
border: 1px solid black;
|
|
}
|
|
|
|
.nav .right {
|
|
float: right;
|
|
border: 1px solid black;
|
|
}
|
|
|
|
.nav .pages {
|
|
text-align: center;
|
|
line-height: 40px;
|
|
border: 1px solid black;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
Текст Сверху
|
|
|
|
<div class="nav">
|
|
<img src="https://js.cx/clipart/arrow-left.jpg" class="left" width="40" height="40">
|
|
<div class="pages">1 2 3 4 5 6 7 8 9</div>
|
|
<img src="https://js.cx/clipart/arrow-right.jpg" class="right" width="40" height="40">
|
|
</div>
|
|
|
|
Текст Снизу
|
|
</body>
|
|
|
|
</html> |