-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
60 lines (51 loc) · 2.27 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
<!DOCTYPE html>
<html>
<head>
<title>Texture, The Free URL Scraper</title>
<meta name="description" content="Texture lets you create beautiful previews for links that your users post in your web or mobile apps.">
<meta name="keywords" content="Texture, URL, Parser, Preview, Hack@Brown">
<meta name="author" content="Team Texture">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<link rel="shortcut icon" href="/assets/favicon/favicon.ico" type="image/x-icon" />
<!--Custom CSS-->
<link rel="stylesheet" type="text/css" href="css/main.css">
<!--jQuery-->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
<!--JavaScript-->
<script type="text/javascript" src="script.js"></script>
<!--Google Analytics-->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-15771516-13', 'texture-parser.herokuapp.com');
ga('send', 'pageview');
</script>
</head>
<body>
<div align="center" id="main_div">
<h1>Texture</h1>
<h2>The Free URL Scraper</h2>
<form id="insert_url" autocomplete="on">
<input id="myinput" type="text" name="url" placeholder="http://www.brown.edu/">
<div id="button"><p>Scrape</p></div>
</form>
<div id="databox">
<div id="image"><img src="assets/Thumbnail.png"></div>
<div id="data">
<div id="title">Texture, The Free URL Parser</div>
<div id="link">http://texture-scraper.heroku.com/</div>
<div id="text">Texture lets you create beautiful previews for links that your users post in your web or mobile apps.</div>
</div>
</div>
<div id="footer">
<ul>
<li><a href="about.html">About</a></li>
<li><a href="https://www.github.com/athyuttamre/Texture">Fork on GitHub</a></li>
<li><a href="support.html">Support</a></li>
</ul>
</div>
</body>
</html>