-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
57 lines (56 loc) · 1.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Circles Tools</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap" rel="stylesheet">
<style>
body {
margin: 0;
font-family: 'Inter', Helvetica, Arial, sans-serif;
background: #ffffff;
color: #333;
line-height: 1.3;
}
header {
background: #5C49E4;
color: #fff;
padding: 20px;
text-align: center;
}
h1 {
margin: 0;
font-weight: 600;
font-size: 1.5rem;
}
p {
margin: 0.5rem 0 0;
font-weight: 400;
}
.container {
max-width: 800px;
margin: 40px auto;
padding: 0 20px;
}
/* No need for form styles */
</style>
</head>
<body>
<header>
<h1>Circles Tools</h1>
<p>Entry point to use the available tools.</p>
</header>
<div class="container">
<ul>
<li><a href="groupChecker.html">Group Checker</a></li>
<li><a href="groupcreator.html">Group Creator</a></li>
<li><a href="groupmanagement.html">Group Management</a></li>
<li><a href="profileChecker.html">Profile Checker</a></li>
<li><a href="SafeViewer.html">Safe Viewer</a></li>
<li><a href="trustViz.html">Trust Visualization</a></li>
<li><a href="trustPathViz.html">Trust Path Visualization</a></li>
</ul>
</div>
</body>
</html>