54 lines
1.2 KiB
HTML
54 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
||
<html>
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<title>Download Manager</title>
|
||
<style>
|
||
body {
|
||
width: 250px;
|
||
padding: 15px;
|
||
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
||
background-color: #f3f3f3;
|
||
}
|
||
.header {
|
||
display: flex;
|
||
align-items: center;
|
||
margin-bottom: 15px;
|
||
}
|
||
.header img {
|
||
width: 32px;
|
||
height: 32px;
|
||
margin-right: 10px;
|
||
}
|
||
.header h1 {
|
||
font-size: 16px;
|
||
margin: 0;
|
||
color: #333;
|
||
}
|
||
.status {
|
||
font-size: 13px;
|
||
color: #666;
|
||
margin-bottom: 10px;
|
||
}
|
||
.footer {
|
||
border-top: 1px solid #ddd;
|
||
padding-top: 10px;
|
||
font-size: 11px;
|
||
color: #888;
|
||
text-align: center;
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<div class="header">
|
||
<h1>Download Manager</h1>
|
||
</div>
|
||
<div class="status">
|
||
Uzantı aktif. İndirmeler otomatik olarak ana uygulamaya yönlendirilir.
|
||
</div>
|
||
<div class="footer">
|
||
© 2026 hDM Project
|
||
</div>
|
||
</body>
|
||
</html>
|