-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuri.html
More file actions
28 lines (25 loc) · 771 Bytes
/
uri.html
File metadata and controls
28 lines (25 loc) · 771 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>URI Parser</title>
<link rel="stylesheet"
href="//cdn.rawgit.com/milligram/milligram/master/dist/milligram.min.css">
<style>
input { width: 100%; }
.error { color: red; }
th { width: 20rem; }
tr.sub th { padding-left: 6rem; }
</style>
</head>
<body>
<h1>URI Parser</h1>
<h2>Enter URI</h2>
<p><input id="input"></p>
<h2>Parsed components</h2>
<p id="output"></p>
<script src="uri.dart.js"></script>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-QK0KCHXW3F"></script>
<script>window.dataLayer = window.dataLayer || [];function gtag(){dataLayer.push(arguments);}gtag('js', new Date());gtag('config', 'G-QK0KCHXW3F');</script>
</body>
</html>