-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·51 lines (44 loc) · 2.7 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
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html>
<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>Amazon URL Shortener</title>
<link rel="manifest" href="./manifest.json">
<link rel="apple-touch-icon" href="./img/favicon.png">
<link rel="icon" href="./img/favicon.png">
<meta name="theme-color" content="#ffffff">
<meta property="og:description" content="An account-free web application that shortens Amazon product URLs without using a special domain.">
<meta property="og:title" content="Amazon URL Shortener">
<meta property="og:image" content="https://hidao80.github.io/amazon-url-shortener/img/favicon.png">
<meta property="og:image:width" content="140">
<meta property="og:image:height" content="140">
<meta property="og:type" content="website">
<meta property="og:url" content="https://hidao80.github.io/amazon-url-shortener/">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous" />
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ygbV9kiqUc6oa4msXn9868pTtWMgiQaeYH7/t7LECLbyPA2x65Kgf80OJFdroafW"
crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"
integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link href="./css/style.css" rel="stylesheet" />
<script src="./js/main.js" type="module"></script>
</head>
<body>
<div id="install-container" class="d-none text-right">
<button id="install" data-translate="Install as PWA">Install as PWA</button>
</div>
<label for="input-url" class="form-label" data-translate="Enter the Amazon URL you would like to shorten">Enter the Amazon product URL you want to shorten.</label>
<div class="input-group mb-3">
<input type="search" class="form-control" id="input-url" aria-describedby="basic-addon3" />
<button class="btn btn-outline-secondary" type="button" id="shortener-btn" data-translate="Shorten and copy">Shorten and copy</button>
</div>
<div class="alert alert-success visually-hidden" role="alert" id="shortener-success" data-translate="Shorten and copy">
</div>
<div class="alert alert-danger visually-hidden" role="alert" id="shortener-danger" data-translate="URL is invalid">
</div>
</body>
</html>