-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
79 lines (66 loc) · 2.01 KB
/
index.html
File metadata and controls
79 lines (66 loc) · 2.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shakespearean Texts Clustering Analysis | Heejin Kim, Kyungpook National University</title>
<style>
/* Global Styles */
body {
font-family: 'Arial', sans-serif;
background-color: #f5f7fa;
margin: 0;
padding: 0;
color: #333;
}
h1 {
background-color: #3498db;
color: #fff;
padding: 20px 0;
text-align: center;
margin: 0;
}
.container {
max-width: 800px;
margin: 50px auto;
background-color: #ffffff;
padding: 20px 40px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
ul {
list-style-type: none;
padding: 0;
}
ul li {
margin-bottom: 20px;
padding: 10px;
background-color: #eaeaea;
transition: background-color 0.3s ease;
}
ul li:hover {
background-color: #ddd;
}
a {
text-decoration: none;
color: #3498db;
display: block;
font-weight: bold;
padding: 10px;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<h1>Shakespearean Texts Clustering Analysis <br> Heejin Kim, Kyungpook National University</h1>
<div class="container">
<ul>
<li><a href="grouped_sorted_bar_plot_play_analysis.html">Grouped Sorted Bar Plot Play Analysis</a></li>
<li><a href="scatter_plot_play_analysis.html">Scatter Plot Play Analysis</a></li>
<li><a href="sorted_prediction_results_table.html">Sorted Prediction Results Table</a></li>
<li><a href="clustering_visualization.html">Visual Clusters of Early Modern Plays </a></li>
</ul>
</div>
</body>
</html>