This repository has been archived by the owner on Jul 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
89 lines (85 loc) · 5.18 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<html>
<head>
<title>Convert URL to Eddystone URL encoding | Eddyst.one</title>
<meta charset="UTF-8">
<meta name="description" content="Convert URL to Eddystone URL encoding">
<meta name="keywords" content="eddystone, eddystone URL, google, BLE, bluetooth, nirmankarta, encoding, physical web">
<meta name="author" content="Prabhanshu Attri">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="apple-touch-icon" sizes="57x57" href="./images/favicons/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="./images/favicons/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="./images/favicons/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="./images/favicons/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="./images/favicons/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="./images/favicons/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="./images/favicons/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="./images/favicons/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="./images/favicons/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="./images/favicons/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="./images/favicons/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="./images/favicons/favicon-16x16.png">
<link rel="manifest" href="./images/favicons/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="./images/favicons/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro" rel="stylesheet">
<link rel="stylesheet" href="./dist/style.min.css">
</head>
<body>
<div class="ui container holder">
<div class="ui middle aligned center aligned grid">
<div class="ten wide column">
<form class="ui large form">
<div class="ui piled segment">
<div class="field">
<h2 class="ui teal image header">
<div class="logo content">
<img src="https://raw.githubusercontent.com/google/eddystone/master/branding/assets/png/EddyStone_final-01.png" alt="Eddystone Logo"/>
</div>
</h2>
</div>
<div class="field">
Type a URL and it will be converted to <a href="https://github.com/google/eddystone/tree/master/eddystone-url" target="_blank">Eddystone URL encoding</a>.
</div>
<div class="field">
<div class="ui left icon input">
<i class="world icon"></i>
<input id="url" type="text" name="url" placeholder="URL like https://eddyst.one/">
</div>
</div>
<div class="ui error message"></div>
<div class="field hexData"></div>
<div class="ui divider"></div>
<div>
<a class="ui image label" href="https://github.com/google/eddystone/tree/master/eddystone-url" target="_blank">
Eddystone URL
</a>
<a class="ui image label" href="https://github.com/nirmankarta/PyBeacon/" target="_blank">
PyBeacon
</a>
<a class="ui image label" href="https://www.prabhanshu.com/" target="_blank">
Prabhanshu Attri
</a>
</div>
</div>
</form>
</div>
<div id="snackbar">Copied</div>
</div>
</div>
<script
src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
<script src="./dist/script.min.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-67526856-7"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-67526856-7');
</script>
</body>
</html>