-
Notifications
You must be signed in to change notification settings - Fork 0
/
annolet .html
48 lines (48 loc) · 1.66 KB
/
annolet .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
<html>
<head>
<title>AnnoLet! - Web Annotation Tool</title>
</head>
<body>
<style>
body{background: #E1E1E3;
font-family:sans;
color: black;
}
#link-btn{
background:blue;
color:white;
display: box;
padding:5px;
text-decoration:none;
font-weight:bold;
}
h1 {
background-color: rgb(0, 0, 0);
color: rgb(248, 241, 241);
margin-top: -20px;
padding: 150px 10px 50px 50px;
width: auto;
}
#container{
margin:20px 10px 10px 15px;
}
</style>
<div id="jumbotron"><h1>AnnoLet! - Web Annotation Tool</h1></div>
<div id="container">
<h3>Drag this box to your bookmark bar</h3>
<a href="javascript:(function(){if(!($=window.jQuery)){
script=document.createElement('script');
script.src='//ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js';
script.onload=initAnnoLet;
document.getElementsByTagName('head')[0].appendChild(script);}
else{initAnnoLet();}
function initAnnoLet(){
script=document.createElement('script');
script.src='//raw.githack.com/raghavmittal101/annolet_bookmarklet/master/annolet_main.js?v='+parseInt(Math.random()*1000);
document.getElementsByTagName('head')[0].appendChild(script);
}})()" id="link-btn">AnnoLet!</a>
<h5>release version 1.A</h5>
<p style="font-size:.9em;bottom:0;position:absolute;color:grey;">This tool is developed by <b>Raghav Mittal</b> at <b>VLeads, Software Engineering Research Center, IIIT Hyderabad.</b></p>
</div>
</body>
</html>