-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
111 lines (97 loc) · 3.16 KB
/
index.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WRF Model Outputs</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/cayman.min.css">
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f9;
}
header {
background-color: #2c3e50;
color: white;
padding: 10px 0;
text-align: center;
}
main {
padding: 20px;
max-width: 900px;
margin: auto;
background: white;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1 {
margin: 0;
}
h2 {
color: #2c3e50;
}
ul {
list-style: none;
padding: 0;
}
ul li {
background: #ecf0f1;
margin: 10px 0;
padding: 10px;
border-radius: 5px;
transition: background 0.3s;
}
ul li a {
text-decoration: none;
color: #2c3e50;
font-weight: bold;
}
ul li:hover {
background: #bdc3c7;
}
footer {
text-align: center;
padding: 10px 0;
background: #2c3e50;
color: white;
position: fixed;
bottom: 0;
width: 100%;
}
.icons a {
color: white;
text-decoration: none;
margin: 0 10px;
}
.icons a:hover {
color: #bdc3c7;
}
</style>
</head>
<body>
<header>
<h1>WRF 9Km Atlantic Forecast System</h1>
</header>
<main>
<p>The Weather Research and Forecasting (WRF) model is a numerical weather prediction system designed to serve both atmospheric research and operational forecasting needs. It features advanced dynamics, physics, and data assimilation options.</p>
<p>This forecast model has a 9 km resolution and provides outputs every 3 hours. The initial conditions are taken from the Global Forecast System (GFS-0.25 deg) and the boundary conditions are updated every 3 hours. The system provides forecast upto 2 days. </p>
<h2>Latest Outputs</h2>
<p>Here you can find the latest WRF model outputs. Click on the links below to view the outputs:</p>
<ul>
<li><a href="wind_magn.gif">Wind Speed (10m)</a></li>
<li><a href="Pressure.gif">Surface Pressure (hPa) </a></li>
<!-- Add more links as needed -->
</ul>
</main>
<footer>
<p>© 2024 Aman Tejaswi</p>
<div class="icons">
<a href="https://github.com/poseidonND"><i class="fab fa-github"></i></a>
<a href="www.linkedin.com/in/aman-tejaswi-4423201b3"><i class="fab fa-linkedin"></i></a>
<!-- Add more social icons as needed -->
</div>
</footer>
</body>
</html>