56 lines
1.5 KiB
HTML
56 lines
1.5 KiB
HTML
<!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">
|
|
|
|
<title>URL Shortener - coligo.io</title>
|
|
<link href='https://fonts.googleapis.com/css?family=Raleway' rel='stylesheet' type='text/css'>
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
|
|
<link href="css/styles.css" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
|
|
<div class="site-wrapper">
|
|
|
|
<div class="site-wrapper-inner">
|
|
|
|
<div class="main-container">
|
|
|
|
<div class="inner cover">
|
|
<span class="glyphicon glyphicon-link"></span>
|
|
<h1>URL Shortener</h1>
|
|
<h4>coligo.io</h4>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-lg-12">
|
|
<div class="input-group input-group-lg">
|
|
<input id="url-field" type="text" class="form-control" placeholder="Paste a link...">
|
|
<span class="input-group-btn">
|
|
<button class="btn btn-shorten" type="button">SHORTEN</button>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-lg-12">
|
|
<div id="link"></div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<script src="https://code.jquery.com/jquery-2.2.0.min.js"></script>
|
|
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
|
|
<script src="javascripts/shorten.js"></script>
|
|
</body>
|
|
</html>
|