Skip to content

Commit

Permalink
This is Headphone Template
Browse files Browse the repository at this point in the history
Enter Your Company Name
  • Loading branch information
ayaanwebdeveloper authored Aug 20, 2024
0 parents commit d110c0d
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 0 deletions.
Binary file added img/headphone.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 18 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Headphone Template</title>
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="img/headphone.png" type="image/x-icon">
</head>
<body>
<div class="box">
<img src="img/headphone.png" alt="" class="i">
<input type="text" class="in" placeholder="Enter Your Company Name">
<h1 class="nam">Headphone Master</h1>
</div>

</body>
</html>
35 changes: 35 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
.box{
width: 80vh;
height: 80vh;
border: 1vh solid;
margin-top: 5%;
margin-left: 64vh;
background: linear-gradient(skyblue,skyblue,rgba(255, 0, 0, 0.637),red);

}
.i{
width: 60%;
margin-left: 15vh;
}
.in{
width: 90%;
margin-top: 1vh;
margin-left: 4vh;
outline: none;
background-color: transparent;
border: none;
height: 8vh;
font-size: 30px;
text-align: center;
font-weight: bolder;
color: white;
text-transform: capitalize;
}
.nam{
text-transform: capitalize;
text-align: center;
color: navy;
}
.in::placeholder{
color: rgba(255, 255, 255, 0.322);
}

0 comments on commit d110c0d

Please sign in to comment.