PDF_reader / header.html
Echo9k's picture
change background color
133437f
<html>
<head>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css">
<style>
body {
font-family: Arial, sans-serif;
background: linear-gradient(45deg, hsl(211, 25%, 27%) 0%, #0056b3 100%);
color: white;
text-align: center;
padding: 20px;
}
.container {
max-width: 600px;
margin: auto;
padding: 20px;
border-radius: 8px;
background: rgba(0, 0, 0, 0.2);
}
input {
margin-top: 10px;
padding: 8px;
border-radius: 5px;
}
</style>
</head>
<body>
<div class="container">
<h1>PDF Voice Reader</h1>
<p>Extract and listen to text from your PDF files effortlessly.</p>
<br><br>
</body>
</html>