-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
41 lines (36 loc) · 2.04 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Favicon Catcher</title>
<link rel="icon" type="image/x-icon" href="./assets/favicon.ico">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css" integrity="sha384-b6lVK+yci+bfDmaY1u0zE8YYJt0TZxLEAFyYSLHId4xoVvsrQu3INevFKo+Xir8e" crossorigin="anonymous">
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.1/js/bootstrap.min.js" integrity="sha512-3dZ9wIrMMij8rOH7X3kLfXAzwtcHpuYpEgQg1OA4QAob1e81H8ntUQmQm3pBudqIoySO5j0tHN4ENzA6+n2r4w==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css" integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="grid">
<h2 align="center">Favicon Catcher</h2>
<center> <img src="" id="theimg"></center><br>
<select id="size">
<option value="default">Default Size</option>
<option value="16">16x16</option>
<option value="32">32x32</option>
<option value="48">48x48</option>
<option value="64">64x64</option>
<option value="128">128x128</option>
</select><br><br>
<input type="text" placeholder="Enter URL" id="urltext">
<br><br>
<input type="submit" value="Grab" onClick="startIT()">
<p>Developed By <a href="https://soulfulscribbles.tech" target="_blank">Alok Sharma</a> |
<a href="https://www.linkedin.com/in/alok-sharma2002-/" target="_blank"><i class="bi bi-linkedin"></i></a>
<br>
Open Sourced On <a href="https://github.com/alok-2002/favicon_catcher" target="_blank"><i class="bi bi-github"></i></a></p>
</div>
<script src="./script.js"></script>
</body>
</html>