-
Notifications
You must be signed in to change notification settings - Fork 1
/
hello.html
31 lines (30 loc) · 907 Bytes
/
hello.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
<!DOCTYPE html>
<html>
<head>
<style>
.button {
background-color: #4CAF50; /* Green */
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
.button2 {background-color: #008CBA;} /* Blue */
</style>
</head>
<body>
<img src="amazon-icon.png" width="15" height="15"><b><font color="orange"> Amazon Reviews Sentiment Analysis and Ratings Graph Visualization</font></b>
<br>
<button class="button" type="button" id="get-homepage-reviews">Get time vs. ratings graph</button>
<button class="button button2" type="button" id="get-sentiment-score">Sentiment score of reviews</button>
<p>
<h3 id="sentiment_text"></h3>
<div id="curve_chart" style="width: 900px; height: 450px"></div>
<script src="popup.js"></script>
</body>
</html>