-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVisualization3.html
More file actions
119 lines (99 loc) · 5.51 KB
/
Visualization3.html
File metadata and controls
119 lines (99 loc) · 5.51 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
<!-- 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-fluid-1 {
padding-top: 60px;
/* 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 the grid/container[1-10-1] and describes the content in the form of <p> elements.
2. Inline styling is used to change font color; background color, and alignment.-->
<div class="container-fluid-1 text-center">
<div class="row content">
<div class="col-sm-1">
</div>
<div class="col-sm-10 text-left">
<h2>Twitter Share</h2>
<p style="text-align:justify;"> To study how the influencers respond to prevalent trends, target tags were defined based on the time period of the study. For the current iteration, 2 tags namely social and entertainment tags were hard coded. The tweet and re-tweet volumes were studied for the top influencers. As expected, tweets that were tagged under social categories were tweeted and re-tweeted the most, and majorly by musicians.</p>
<ol >
<li><p style="font-size: 15px;font-weight:normal;text-align: justify;"> Social target tags such as "Pride Month","Fake News","Me Too","Immigration","FamiliesBelongTogether", and variations of the words.</p></li>
<li><p style="font-size: 15px;font-weight:normal;text-align: justify;"> Entertainment target tags such as "BeCharmingIn4Words","#CitiOpen","Roseanne","OTRII","FamiliesBelongTogether" and variations of the words.</p></li>
</ol>
<hr>
</div>
<div class="col-sm-1">
</div>
</div>
</div>
<!-- The block of HTML Code below does the following -
1. Defines a container to hold the h3 element-->
<div class="container">
<h3 style="text-align: center; color: blue"><em>Visualizations</em></h3>
</div>
<!-- The block of HTML Code below does the following -
1. Defines a container to hold the jumbotron and images underneath it.
2. Inline styling is used to change font color; background color, and alignment. -->
<div class="container">
<div class="jumbotron">
<div class="row content">
<div class="col-sm-5 thumbnail">
<a href=" ">
<img src="Images\2.png" alt="Sentiment Analysis" >
</a>
</div>
<div class="col-sm-2"></div>
<div class="col-sm-5 thumbnail">
<a href=" ">
<img src="Images\3.png" alt="Sentiment Analysis" >
</a>
</div>
</div>
</div>
</div>
</body>
</html>