-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
63 lines (61 loc) · 2.09 KB
/
index.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
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Directory Page</title>
<style>
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 20px;
background-color: #f3f4f6;
}
.container {
max-width: 600px;
margin: 0 auto;
background-color: #ffffff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
text-align: center;
}
h1 {
margin-bottom: 20px;
}
a {
display: block;
padding: 10px 20px;
border-radius: 5px;
margin-bottom: 10px;
background-color: #6c757d;
color: white;
text-decoration: none;
transition: background-color 0.3s;
}
a:hover {
background-color: #5a636e;
}
</style>
</head>
<body>
<div class="container">
<h1>Welcome to the Directory Page</h1>
<!-- Hyperlinks -->
<a href="denotation/denotation.html">Denotation</a>
<a href="mvalue/m_index.html">Logic of Paradox</a>
<a href="parse/parse.html">Model Generator</a>
<a href="tree/tree.html">Tableau Generator</a>
<a href="Pinetree/tree.html">Tableau Generator (Christmas Version)</a>
<a href="announce/announceable.html">Announceable Test</a>
<a href="Social_Graph/k_map.html">Generate SOP by K-map</a>
<a href="Social_Graph/index1.html">Social Graph</a>
<a href="Coherence/coherence.html">Coherence</a>
<a href="Echo_Chamber/Chamber.html">Echo Chamber</a>
<a href="disconnect/disconnect.html">Disconnection Game</a>
<a href="examples/BD_dist.html">examples</a>
<a href="Slide/Social_Announcement_Logic.html">slide</a>
<a href="Slide/Defence.html">defence_slide</a>
</div>
</body>
</html>