forked from acm-uga/acm-uga.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
skeleton.html
92 lines (79 loc) · 3.22 KB
/
skeleton.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
<html>
<head>
<title>UGA-ACM</title>
<link rel="stylesheet" href="resources/styles/styles.css">
<script src="slides.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="event-slide.js"></script>
<link rel="shortcut icon" type="image/png" href="resources\favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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=Open+Sans&display=swap" rel="stylesheet">
</head>
<body onload="render(); renderEventSlide()">
<div id="banner">
<div id="imgBan">
<img src="resources/logo.png">
<div class="topnav-right">
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="events.html">EVENTS</a></li>
<li><a href="resources.html">RESOURCES</a></li>
<li><a href="workshops.html">WORKSHOPS</a></li>
<li><a href="about.html">ABOUT US</a></li>
</ul>
</div>
</div>
</div>
<div id="main">
<div id="content">
<div id="columns">
<!--<div id="column-1">-->
<h1>THIS IS THE FILE WITH SKELETON CODE</h1>
<p>STYLE MAIN CONTENT WITHIN DIV WITH ID="columns"</p>
</div>
</div>
</div>
<footer>
<div id="footer-columns">
<div class="footer-column left-footer-column">
<h2>ACM at UGA</h2>
<p>ACM at UGA is the University of Georgia chapter of the Association for Computing Machinery. Our goal
is to represent
computing majors and promote computing-related causes on campus and beyond.
</p>
<p>Email: [email protected]</p>
</div>
<div class="footer-column middle-footer-column">
<h2>Partners</h2>
<p>ACM-W</p>
<p>girls.code()</p>
<p>CSIP</p>
<p>UGAHacks</p>
<p id="copyright">© ACM at UGA 2022</p>
</div>
<div class="footer-column right-footer-column">
<h2>Join Us</h2>
<div id="social-media">
<a href="https://discord.gg/AcPYBCDWeA">
<img class="help" src="resources/social_img/discord.png">
</a>
<br>
<a href="https://www.instagram.com/ugaacm">
<img class="help" src="resources/social_img/insta.png">
</a>
<br>
<a href="https://github.com/uga-acm">
<img class="help" src="resources/social_img/github.png">
</a>
<br>
<a href="https://csip-uga.github.io">
<img class="help" src="resources/social_img/csip.png">
</a>
</div>
</div>
</div>
</footer>
</body>
</html>