-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInteractive_Graphs.html
49 lines (44 loc) · 1.91 KB
/
Interactive_Graphs.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Interactive Graphs</title>
<style>
/* Add a flexbox container for side-by-side layout */
.graph-container {
display: flex;
justify-content: space-between; /* Space between graphs */
gap: 20px; /* Optional spacing between graphs */
}
.graph-container iframe {
flex: 1; /* Allow graphs to grow and shrink equally */
height: 600px; /* Ensure consistent height */
border: none; /* Remove iframe borders */
}
</style>
</head>
<body>
<h1>Interactive Graphs</h1>
<p>Below are interactive graphs related to the IAM-H2 article titled: "The Role of Hydrogen in Integrated Assessment Models: A Review of Recent Developments."</p>
<!-- Section for Graphs 1, 2, and 3 -->
<h2>Figure 6: Hydrogen Production Across C1, C2 and C3 Categories</h2>
<div class="graph-container">
<!-- Embed Graph 1 -->
<iframe src="C1-H2-Production-level.html"></iframe>
<!-- Embed Graph 2 -->
<iframe src="C2-H2-Production-level.html"></iframe>
<!-- Embed Graph 3 -->
<iframe src="C3-H2-Production-level.html"></iframe>
</div>
<!-- Section for Graphs 4 and 5 -->
<h2>Figure 8: Hydrogen Production and Consumption in IPCC C1-C3 Scenarios</h2>
<p>Hydrogen production and consumption averages in scenarios limiting global warming to <strong>2°C</strong> or lower (with a probability exceeding <strong>67%</strong>), as categorized by <strong>IPCC C1-C3</strong>.</p>
<div class="graph-container">
<!-- Embed Graph 4 -->
<iframe src="Production_boxplot_interactive.html"></iframe>
<!-- Embed Graph 5 -->
<iframe src="Consumption_boxplot_interactive.html"></iframe>
</div>
</body>
</html>