-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (45 loc) · 1.91 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
<!DOCTYPE html>
<html lang="en">
<head>
<script src="head.js"></script>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title> AGt Url shortner</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Your Own URL Shortener which doesn't need a server">
<meta name="author" content="Anurag singh">
<link rel="stylesheet" type="text/css" media="screen" href="index.css" />
<link rel="shortcut icon" href="logo.png">
</head>
<body >
<div class="main" style="margin-top:70px;">
<header>
<h1 class="h1"><a href="/"><img src="logo.png" width="200px"> </a>
</header>
<div class="form">
<input type="url" id="urlinput" placeholder="Put Your Long URL Here">
<div>
<input type="text" maxlength=20 id="custominput" placeholder="Custom URL">
<p id="erbox" style="color:red;"></p>
</div>
<button id="sbtn" type="button" class="btn btn-dark"> 🔗 Shorten Me</button>
</div>
<br>
<div class="form1" style="margin-bottom : 0px !important;">
<input type="text" id="shortenedURL" placeholder="Your Short Url Shown here">
<p id="sucess" style="color:black"></p>
</div>
<footer class="infos">
<p class="small-text" style="color:grey;">Please Don't Shorten Sensitive Information With agurl! We are not
responsible for any damage made using agurl </p>
<br>
<!--<a class="small-text" href="https://github.com/anurag989/altcoder"> ⚠️ Report</a>-->
<p style="margin-bottom:0px;"><strong> Handcrafted with ❤ by
<a href="https://altcoder.cf/">anurag singh</a></strong>
</p>
</footer>
</div>
<br>
<script src="index.js"></script>
</body>
</html>