-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.html
More file actions
27 lines (27 loc) · 1.13 KB
/
header.html
File metadata and controls
27 lines (27 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Header</title>
<link rel="stylesheet" href="style.css">
<style>
body
{
background-color: rgb(97, 96, 52);
background-image: url(images/IMG-20240923-WA0001.jpg);
background-repeat: no-repeat;
background-size: 145px 145px;
}
</style>
</head>
<body>
<h1>Book Haven</h1>
<hr style="height: 2px; color: black; background-color: black; border: 0;">
<div class="dhdr"><a href="home.html" target="main"><button class="bhdr">Home</button></a></div>
<div class="dhdr"><a href="login.html" target="main"><button class="bhdr">Login</button></a></div>
<div class="dhdr"><a href="regstr.html" target="main"><button class="bhdr">Registration</button></a></div>
<div class="dhdr"><a href="catlog.html" target="main"><button class="bhdr">Catalogue</button></a></div>
<div class="dhdr"><a href="cart.html" target="main"><button class="bhdr">Cart</button></a></div>
</body>
</html>