-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocs
More file actions
33 lines (33 loc) · 776 Bytes
/
docs
File metadata and controls
33 lines (33 loc) · 776 Bytes
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
<html>
<head>
<title>Word Cloud</title>
<style>
.header {
margin-bottom: 1em;
}
h1 { color: green; }
</style>
</head>
<body>
<div class="header">
<h1>My Way by Frank Senatra</h1>
<a href="https://genius.com/Frank-sinatra-my-way-lyrics">Lyrics</a>
</div>
<div class="content">
<img src="wordcloud.png" />
<br/>
<p>
This word cloud shows the words from the song <em>"My Way"</em>.
I made this for CSIS3130 class.
</p>
<p>
It was generated by:
<ul>
<li>Finding the most frequent words using a hashtable</li>
<li>The code was written in Java.</Baisal>
<li>Using the <a href="https://github.com/kennycason/kumo">Kumo</a> Library.</li>
</ul>
</p>
</div>
</body>
</html>