File size: 1,506 Bytes
6393348
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
b3b3a00
6393348
 
86062c0
84db549
6393348
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>My Multi-App Space</title>
<style>
  body {
    font-family: Arial, sans-serif;
    background: #f5f7fa;
    margin: 0;
    padding: 0;
    text-align: center;
  }
  h1 {
    padding: 20px;
    color: #333;
  }
  .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
  }
  .chip {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 250px;
    transition: transform 0.2s, box-shadow 0.2s;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
  }
  .chip:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  }
  .chip img {
    width: 100%;
    height: 150px;
    object-fit: cover;
  }
  .chip h2 {
    font-size: 1.2em;
    margin: 15px 0;
    color: #444;
  }
</style>
</head>
<body>

<h1>My Multi-App Space</h1>
<div class="container">
  <a class="chip" href="app1/index.html">
    <img src="https://i.imgur.com/hVCXpvV.png" alt="App 1 Thumbnail" />
    <h2>Lotka-Volterra-simulation</h2>
  </a>
  <a class="chip" href="app2/index.html">
    <img src="app2/thumbnail.png" alt="App 2 Thumbnail" />
    <h2>App 2</h2>
  </a>
  <a class="chip" href="app3/index.html">
    <img src="app3/thumbnail.png" alt="App 3 Thumbnail" />
    <h2>App 3</h2>
  </a>
</div>

</body>
</html>