-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (43 loc) · 2.64 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
<!DOCTYPE html>
<!-- TODO https://dev.to/ananyaneogi/create-a-dark-light-mode-switch-with-css-variables-34l8 -->
<html>
<head>
<title>UT Association for Women in Math</title>
<link rel="stylesheet" type="text/css" href="main.css"/>
</head>
<body onload="getUpdateTime()">
<h1 class="blinking-text">Welcome to <span class="special-green">UT AWM</span>!</h1>
<div class="Mission">
<img class="Logo" src="photos/logo.jpg" alt="Logo" width = 350>
<p> </p>
<p align="Center"><font size = 10><b>Mission Statement</b><br></font> <br>
The purpose of the Association for Women in Mathematics - UT Austin Chapter is to encourage women
and girls to study and have active careers in the mathematical sciences. We strive to accomplish
this goal by promoting equal opportunity & treatment of women and girls in the mathematical sciences
and by fostering community & cooperation in these fields.</p>
</div>
<h2 align="Center"><a href="officers.html">officers</a> * <a href="resources.html">resources</a> * <a href="socials.html">socials</a> * <a href="volunteering.html">volunteering</a> * <a href="awards.html">awards</a></h2>
<p>We meet @ <span class="special-green">PMA 9.166 from 4 - 5pm on Wednesdays</span>. <em>All genders are welcome.</em></p>
<!-- <p>Talk with your club members on our <a href="https://discord.gg/Vqkj22gS5d" style="color: black;">Discord server</a>.</p> -->
<div id="socials-list">
<span>Click
<a href="https://utlists.utexas.edu/sympa/subscribe/utawm?previous_action=edit_list_request#" target="_blank">here</a>
to join our mailing list!</span>
<font size = 5>Connect with us here:
<a href="https://www.instagram.com/texasawm/" target="_blank" id = "button"><img id="button" src="photos/instagram.jpg" width = 50> </a>
<a href="https://discord.gg/gpZPKceVgF" target="_blank" id = "button"><img id="button" src="photos/discord.jpg" width = 50> </a>
<a href="https://www.facebook.com/groups/texasawm/?ref=share" target="_blank" id = "button"><img id="button" src="photos/facebook.jpg" width = 50> </a>
<a href="mailto:[email protected]" target="_blank" id = "button"><img id="button" src="photos/gmail.jpg" width = 50> </a>
<a href="https://github.com/Texas-AWM" target="_blank" id = "button"><img id="button" src="photos/github.jpg " width = 50> </a>
</font>
</div>
</body>
<footer>
<script>
function getUpdateTime() {
document.getElementById("update-time").innerHTML = document.lastModified;
}
</script>
<p style="font-size: medium;">Server last updated this page on <span id="update-time"></span>.</p>
</footer>
</html>