-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enter Your Company Name
- Loading branch information
0 parents
commit d110c0d
Showing
3 changed files
with
53 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); | ||
} |