<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>YouTube Keyword Tool</title>
<style>
body {
background-color: black;
color: white;
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
}
h1 {
text-align: center;
font-weight: bold;
}
input {
display: block;
width: 100%;
padding: 10px;
margin: 10px 0;
border: none;
font-weight: bold;
}
button {
background-color: green;
color: white;
font-size: 16px;
font-weight: bold;
border: none;
padding: 10px 20px;
cursor: pointer;
display: block;
margin: 10px auto;
border-radius: 5px;
}
button:hover {
background-color: darkgreen;
}
</style>
</head>
<body>
<h1>YouTube Keyword Tool</h1>
<input type="text" placeholder="Enter a keyword..." />
<button>Search</button>
</body>
</html>