-
Notifications
You must be signed in to change notification settings - Fork 2
/
wcloud.html
50 lines (44 loc) · 1.05 KB
/
wcloud.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
<!DOCTYPE html>
<html>
<head>
<style>
* {
box-sizing: border-box;
}
.column {
float: left;
width: 33.33%;
padding: 5px;
}
/* Clearfix (clear floats) */
.row::after {
content: "";
clear: both;
display: table;
}
/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 500px) {
.column {
width: 100%;
}
}
</style>
</head>
<body>
<h1 style="text-align:center">Word Cloud</h1>
<div class="row">
<div class="column">
<img src="assets/img/pos.png" alt="Snow" width="500" height="500">
<h1 style="text-align:center">Positive Sentiments</h1>
</div>
<div class="column">
<img src="assets/img/neu.png" alt="Forest" width="500" height="500">
<h1 style="text-align:center">Neutral Sentiments</h1>
</div>
<div class="column">
<img src="assets/img/neg.png" alt="Mountains" width="500" height="500">
<h1 style="text-align:center">Negative Sentiments</h1>
</div>
</div>
</body>
</html>