-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathalexa.html
102 lines (97 loc) · 2.65 KB
/
alexa.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!doctype html>
<html>
<head>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/annotation.css">
<link rel="stylesheet" type="text/css" href="css/font-awesome.min.css">
<title>
Alexa overview of an URL
</title>
</head>
<body>
<table width="100%" style="max-height: 200px; ">
<tr class="spaceUnder">
<td style="text-align: center;">
<div id ="horizontal_line" style="margin-bottom: 5px"></div>
<div class='container' style="background: white">
<img class='resize_fit_center'
src='images/logo.gif' />
</div>
<div id="horizontal_line" style="margin-top:3px"></div>
</td>
</tr>
</table>
<div>
<h2 style="text-align: center;"><strong>Alexa overview of Current URL</strong><br></h2>
</div>
<div class="container" id="container-whole">
<div class="row">
<div class="col-sm-12">
<h4>Summary</h4>
<pre id="show_alexa_data" style="font-size: 20px">
</pre>
</div>
</div>
</div>
</body>
</html>
<script src="scripts/alexa.js"></script>
<style>
.color_code
{
color:#22c399;
}
body{
max-height: 100%;
}
@font-face {
font-family: Bebas Neue;
src: url("../fonts/BebasNeue.otf");
}
@font-face {
font-family: Gill Sans Light;
src: url("../fonts/GillSans-Light.ttf");
}
#horizontal_line{
margin: 0px;
padding: 0px;
border: 0px solid rgb(6, 117, 211);
font-size: 19px; font-style: inherit;
font-variant: inherit;
font-weight: inherit;
font-stretch: inherit;
line-height: 1;
font-family: sans-serif;
vertical-align: baseline;
box-sizing: content-box;
overflow: unset;
height: 1px;
position: relative;
width: auto;
display: flex;
background-color: rgb(9, 150, 248); color: rgb(255, 255, 255);
text-align: left;
align-items: center;
border-radius: 3px;
justify-content: center;
text-decoration: none;
}
.resize_fit_center {
max-width:100%;
max-height:100px;
}
h2{
font-family: Bebas Neue;
font-size: 50px;
}
.container{
padding-left: 15px;
padding-right: 15px;
}
p{
font-family:Gill Sans Light;
font-size: 20px;
}
</style>