-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
62 lines (62 loc) · 1.58 KB
/
popup.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FaviFetch</title>
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Roboto:wght@300;400&display=swap" rel="stylesheet">
<style>
body {
width: 300px;
padding: 20px;
font-family: 'Roboto', sans-serif;
background-color: #f8f9fa;
color: #343a40;
text-align: center;
border: 1px solid #dee2e6;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
h1 {
font-family: 'Playfair Display', serif;
font-size: 24px;
margin-bottom: 15px;
color: #495057;
}
p {
font-size: 14px;
line-height: 1.6;
margin-bottom: 20px;
color: #6c757d;
}
#downloadBtn {
display: inline-block;
padding: 10px 20px;
background-color: #007bff;
color: white;
border: none;
border-radius: 4px;
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s ease;
font-family: 'Roboto', sans-serif;
text-decoration: none;
}
#downloadBtn:hover {
background-color: #0056b3;
}
.icon {
width: 64px;
height: 64px;
margin-bottom: 15px;
}
</style>
</head>
<body>
<img src="icon.png" alt="FaviFetch Icon" class="icon">
<h1>FaviFetch</h1>
<p>Download the favicon of the current website with just one click.</p>
<a href="#" id="downloadBtn">Download Favicon</a>
<script src="popup.js"></script>
</body>
</html>