-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCompare.html
More file actions
127 lines (111 loc) · 5.78 KB
/
Compare.html
File metadata and controls
127 lines (111 loc) · 5.78 KB
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!-- Define HTML Structure : Website Title: Tweet-er; Indicate links to he latest Bootstrap CDN 4.1.3 and JavaScript Library -->
<!DOCTYPE html>
<html lang="en">
<head>
<title>Visualize</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="WebVisualization.css">
<style>
.container{
padding-top: 70px;
/* padding-bottom: 70px; */
}
</style>
</head>
<body>
<!-- The block of HTML Code below does the following -
1. Bootstrap Component for Navigation Bar is used below. The inline styling is used to change font color; background color, and alignment.
2. Nav Bar Toggler/Button is used to ensure responsive behavior for various screen sizes.
3. Drop Down Toggle is used for Visualize Item.-->
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">Visualize!</a>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav navbar-right">
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="Visualization1.html">Visualization
<span class="caret"></span>
</a>
<ul class="dropdown-menu">
<li><a href="Visualization1.html">Sentiment Analysis</a></li>
<li><a href="Visualization2.html">Tweet Analysis</a></li>
<li><a href="Visualization3.html">Twitter Share</a></li>
<li><a href="Visualization4.html">Twitter Volume</a></li>
</ul>
</li>
<li><a href="Compare.html">Compare</a></li>
<li><a href="GetData.html">Get Data</a></li>
</ul>
</div>
</div>
</nav>
<!-- The block of HTML Code below does the following -
1. Defines container to hold the images from a relative path.
2. Inline styling is used to enhance the presentation
3. The images and headers are clickable and directs to the individual visualization pages-->
<div class="container text-center" style="border: 1px solid lightgray;">
<p><em> Click on the Image or Title to learn more!</em></p>
<br>
<div class="row" style="margin: auto;">
<div class="col-sm-4">
<a href="Visualization1.html" style="color: blue">
<em><strong>Influencers vs Tweet Polarity</strong></em></a> <br>
<a href="Visualization1.html">
<img src="Images\SA_1.png" alt="Random Name" style="width:100%">
</a>
</div>
<div class="col-sm-4">
<a href="Visualization1.html" style="color: blue">
<em><strong>Avid Twitters vs Tweet Polarity</strong></em></a> <br>
<a href="Visualization1.html">
<a href="Visualization1.html">
<img src="Images\SA_2.png" alt="Random Name" style="width:100%">
</a>
</div>
<div class="col-sm-4">
<a href="Visualization1.html" style="color: blue">
<em><strong>Top 10 Influencers vs Sentiment Analysis</strong></em></a> <br>
<a href="Visualization1.html">
<a href="Visualization1.html">
<img src="Images\SA_3.png" alt="Random Name" style="width:100%">
</a>
</div>
</div>
<hr>
<div class="row" style="margin: auto;">
<div class="col-sm-4">
<a href="Visualization2.html" style="color: blue">
<em><strong>Category vs Retweets</strong></em></a> <br>
<a href="Visualization2.html">
<img src="Images\TA1.png" alt="Random Name" style="width:100%">
</a>
</div>
<div class="col-sm-4">
<a href="Visualization2.html" style="color: blue">
<em><strong>Category vs Tweets</strong></em></a> <br>
<a href="Visualization2.html">
<img src="Images\TA2.png" alt="Random Name" style="width:100%">
</a>
</div>
<div class="col-sm-4">
<a href="Visualization3.html" style="color: blue">
<em><strong>Genre vs Twitter Share</strong></em></a> <br>
<a href="Visualization3.html">
<img src="Images\3.png" alt="Random Name" style="width:100%">
</a>
</div>
</div>
</div>
</body>
</html>