-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvideos.html
More file actions
40 lines (38 loc) · 2.05 KB
/
Copy pathvideos.html
File metadata and controls
40 lines (38 loc) · 2.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Videos</title>
<link rel="icon" type="image/x-icon" href="images/favicon_mike_lau.png">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Roboto:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap" rel="stylesheet">
</head>
<div class="grey-block">
<div id="menu"></div>
<script>
fetch("menu.html")
.then(res => res.text())
.then(data => {
document.getElementById("menu").innerHTML = data;
});
</script>
</div>
<div class="research">
<div class="research-page">
<h1>Videos</h1>
<p><a href="https://themikelau.github.io/RSG_CE">Common-envelope simulations with a 12 solar mass red supergiant donor (Lau et al. 2022a)</a></p>
<br>
<p><a href="https://themikelau.github.io/CE_recombination">Simulations of atomic/molecular recombination in common-envelopes (Lau et al. 2022b)</a></p>
<br>
<p><a href="https://themikelau.github.io/planet_engulfment">Simulation of hot Jupiter engulfment by a red giant star (Lau et al. 2025a)</a></p>
<br>
<p><a href="https://themikelau.github.io/radiation_CE">Common-envelope evolution with radiation transport (Lau et al. 2025b)</a></p>
<br>
<p><a href="https://themikelau.github.io/planet_ablation">Continuous mass ablation of planets engulfed in stellar envelopes (Lau et al. 2026)</a></p>
</div>
</div>