-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
89 lines (86 loc) · 2.47 KB
/
Copy pathindex.html
File metadata and controls
89 lines (86 loc) · 2.47 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
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WebGallery - MasterThesis</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #333;
}
header {
background-color: #100f14;
color: white;
text-align: center;
padding: 1em 0;
}
header h1 {
margin: 0;
}
.gallery {
display: flex;
flex-wrap: wrap;
justify-content: center;
padding: 2em;
}
.gallery-item {
background-color: white;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
margin: 1em;
text-align: center;
width: 200px;
overflow: hidden;
}
.gallery-item img {
width: 100%;
display: block;
}
.gallery-item p {
padding: 1em;
margin: 0;
text-align: left;
}
.thank-you {
background-color: #333;
color: white;
padding: 2em;
text-align: center;
}
footer {
background-color: #100f14;
color: white;
text-align: center;
padding: 1em 0;
}
</style>
</head>
<body>
<header>
<h1>WebGallery</h1>
<p>Explore the microverse of Brain Organoids</p>
</header>
<section class="gallery">
<div class="gallery-item">
<img src="images_upload/img1.gif" alt="Description of image 1">
<p>Visible is a dividing chromatin under 4-times physical expansion</p>
</div>
<div class="gallery-item">
<img src="images_upload/img3.jpg" alt="Description of image 2">
<p>A view into the eye of Sauron!</p>
</div>
<!-- Add more images as needed -->
</section>
<section class="thank-you">
<h2>Thank You</h2>
<p>Special thanks to all the amazing people who supported and contributed to this project.</p>
<p>Giuseppe Testa, Emanuele Villa, Oliviero Leonardi, Nikolai Klena .... </p>
</section>
<footer>
<p>Contact: [Your Email]</p>
</footer>
</body>
</html>