-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnews.html
69 lines (67 loc) · 3.16 KB
/
news.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="./src/sinter_logo_redraw_3.png" type="image/icon type">
<link rel="stylesheet" href="./CSS/index.css" />
<link rel="stylesheet" href="CSS/news.css" />
<link href="https://fonts.googleapis.com/css2?family=Barlow:wght@700&display=swap" rel="stylesheet">
<title>SINTER News</title>
</head>
<body>
<div class="menu" id="myMenu">
<a class="closebtn" onclick="closeNav()">x</a>
<a href="./index.html">Home</a>
<a href="./aboutUs.html">About Us</a>
<a href="./snowSchool.html">Snow School</a>
<a href="./quarterlyMeetings.html">Quarterly Meetings</a>
<a href="./news.html">News</a>
<a href="./researchLinks.html">Research Links</a>
<a href="https://catalyst.uw.edu/webq/survey/jdlund/341546">Join Us!</a>
</div>
<div id="main" class="mainContent">
<div class="bottomLayer">
<img src="src/DSC_0416-1 Web.jpg">
</div>
<div class="topLayer">
<div class="mainContentSpace">
<div class="heading" id="buttons">
<div onclick="openNav()" class="menuButton">
<img src="./src/MenuIcon.png" />
</div>
<div class="logo">
<img src="./src/sinter_logo_redraw_3.png" />
<h1>SINTER</h1>
</div>
</div>
<div class="newsHeading">
<h1>SINTER News</h1>
</div>
</div>
<div class="mainAboutUsSpace">
<h2>SINTER Snow School, Now Online</h2>
<p>
We are happy to anounce that our snow school will take place online this year! With help from CUASHI, we will be posting videos that can be viewed on this site!
Please visit the Snow School portion of the site, located at the menu to check it out!
</p>
<h2>Snow Podcast</h2>
<p>
Here at SINTER, we are always excited about our friends getting PR! Check out the new podcast episode featuring Carl Benson and Maththew Sturm!
The episode is called "Extreme Researchers: Carl Benson and Matthew Sturm", and can be found on Northern Soundings. Click <a href="https://northernsoundings.com/2021/01/26/extreme-researchers-carl-benson-and-matthew-sturm/">here</a>
to listen!
</p>
<div class="jobAnnouncements">
<h2>Job Announcements</h2>
<p>Here we post any job opportunities from any of our members:</p>
<ul>
<li>2- years post-doc position on the physical modeling of snow evolution.</li>
<li>Up to 4 years research engineer position on model design and implementation.</li>
</ul>
</div>
</div>
</div>
</div>
<script src="JavaScript/index.js"></script>
</body>
</html>