-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpublications.html
81 lines (76 loc) · 2.83 KB
/
publications.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Publications</title>
<style>
body {
background-image: url('background.png'); /* Assuming your background image is named background.png */
background-size: cover;
background-position: center;
font-family: 'Comic Sans MS', 'Comic Sans', cursive;
color: #fff;
}
.container {
max-width: 800px;
margin: 0 auto;
background-color: rgba(0, 0, 0, 0.8); /* Dark background with opacity */
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
h1 {
color: #2980B9;
font-size: 2em; /* Larger font size for the main title */
}
h2 {
color: #2980B9;
font-size: 1.8em; /* Larger font size for the section title */
}
p {
line-height: 1.6;
color: #fff; /* White text for better readability */
font-size: 1.2em; /* Larger font size for the paragraph */
}
.publication {
margin-bottom: 20px;
}
.button {
display: inline-block;
padding: 10px 20px;
font-size: 1.2em;
color: #ECF0F1;
background-color: #2980B9;
border: none;
border-radius: 5px;
text-decoration: none;
transition: background-color 0.3s ease;
margin-top: 20px;
}
.button:hover {
background-color: #3498DB;
}
</style>
</head>
<body>
<div class="container">
<h1>Publications</h1>
<div class="publication">
<h2>In situ thermal characterisation and filamentary modification in Polymethylpentene</h2>
<p>Authors: Beining Liu, Xingzhu Wang, Juan Ahuir Torres, Tingyi He, Hongjun Zhou, Hong Zhao, Chong Zeng, Li Ma, Xihao Chen, Guangyu Zhu</p>
<p>Published in: Infrared Physics & Technology, 130 (2023), 104636</p>
<p><a href="instu.pdf" download>Download PDF</a></p>
<div class="publication">
<h2>RELICS: a REactor neutrino LIquid xenon Coherent e</h2>
<p>Authors: Cai et al., Tingyi He</p>
<p>Status: Preprint</p>
<p><a href="Cai 等 - 2024 - RELICS a REactor neutrino LIquid xenon Coherent e.pdf" download>Download PDF</a></p>
</div>
<a href="index.html" class="button">Back to Home</a>
<div class="attribution">
Background image: Event Horizon Telescope collaboration.
</div>
</div>
</div>
</body>
</html>