Kal
Kal
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-
awesome/6.5.1/css/all.min.css">
<link rel="stylesheet" href="n.css">
</head>
<body>
<div class="menu-bar">
<h1 class="logo">Kal <span>Grooming</span></h1>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li>
<a href="#">Pages <i class="fas fa-caret-down"></i> </a>
<div class="dropdown-menu">
<ul>
<li><a href="#">pricing</a></li>
<li><a href="#">portfolio</a></li>
<li>
<a href="#">Breeds <i class="fas fa-caret-down"></i></a>
<div class=" sub">
<ul>
<li><a href="#"> Retriever</a></li>
<li><a href="#">Husky</a></li>
<li><a href="#">Shepherd</a></li>
</ul>
</div>
</li>
<li><a href="#">contact</a></li>
</ul>
</div>
</li>
<li><a href="#gallary">Gallery </a></li>
<li><a href="#">FAQ </a></li>
</ul>
<div class="body">
<div class="box">
<form action="form"><br>
<label for="fname"></label><br>
<input type="text" placeholder="Your Name" required><br><br>
<label for="email"></label>
<input type="email" placeholder="Your Email" required><br><br>
<label for="pss"></label>
<input type="password" placeholder="password"required><br><br>
<label for="phone"></label>
<input type="number" placeholder="phone" min="0" required><br><br>
<button>Buy Now</button>
</form>
</div>
<div class="pet">
<h1 >Grooming & Pet <br> <span>Suplies</span></h1>
<p>From luxurious grooming products to stylish pet accessories, we
curate a selection of items that prioritize both functionality and fashion. Whether
you have a playful pup, a curious cat, or any other beloved pet, we have everything
you need to pamper them in style.
</body>
</html>
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: sans-serif;
}
body {
font-family: sans-serif;
background-image: url(im/web\ back\ 2d.jpg);
background-color: bisque;
background-repeat: no-repeat;
background-size:cover;
color: rgb(255, 255, 255);
height: 500px;
.menu-bar {
background-color: rgba(139, 118, 74, 0.568);
height: 80px;
width: 100%;
padding: 0.5%;
.logo {
color: white;
font-size: 30px;
position: absolute;
margin: 20px;
}
.logo span {
color: rgb(255, 174, 0);
}
.menu-bar ul {
list-style: none;
margin-top: 20px;
}
.menu-bar ul li {
padding: 20px;
position: relative;
display: inline;
left: 50%;
}
.menu-bar ul li a {
text-decoration: none;
color: white;
font-size: 20px;
padding: 20px ;
}
.menu-bar ul li a:hover {
color: rgb(233, 199, 9);
.dropdown-menu {
display: none;
position: absolute;
top: 100%;
left: 0;
background-color: rgba(85, 82, 78, 0.562);
}
.menu-bar ul li:hover .dropdown-menu {
display: block;
.dropdown-menu ul li {
padding: 10px;
}
.sub {
display: none;
position: absolute;
top: 0;
left: 100%;
background-color: rgba(85, 77, 68, 0.562);
}
.sub ul {
list-style: none;
}
img{
max-width: 400px;
height: auto;
box-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.164);
transition:1s ;
}
img:hover {
transform:scale(1.1);
z-index : 2;
}
#gallary{
display: flex;
gap: 10px;
position: absolute;
left: 10%;
margin-top: -600px;
overflow: hidden;
}
#gallary img{
width: 3000px;
height: 250px;
padding: 10px;
}
.im-container img{
border-radius: 20px;
}
.our{
color: rgb(61, 61, 71);
font-weight: 900;
font-size: 40px;
font-family: sans-serif;
margin-top: 30%;
text-align: center;
}
.our span{
font-weight: 100;
p{
text-align: center;
}
.our p{
margin-top: -70;
}
.body{
align-items: center;
margin-top: 20%;
display: flex;
}
input{
width: 300px;
padding: 10px;
border-radius: 10px;
background: transparent;
color: white;
backdrop-filter: BLUR(10px);
}
button{
width: 220px;
padding: 10px;
border-radius: 10px;
margin-left: 40px;
background-color: rgb(212, 201, 103);
color: white;
}
button:hover{
background-color: rgb(56, 72, 216);
}
.box{
padding: 200px;
margin-top: -250px;
}
.pet h1{
margin-top: -200px;
text-align: center;
}
.pet span{
color: rgb(251, 255, 15);
}
::placeholder{
color: white;
}