-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (77 loc) · 2.73 KB
/
index.html
File metadata and controls
78 lines (77 loc) · 2.73 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ACM Luther College</title>
<script src="static/js/script.js"></script>
<link rel="stylesheet" href="static/css/style.css" />
<link rel="stylesheet" href="static/css/bootstrap.min.css" />
<link rel="shortcut icon" type="image/ico" href="static/images/favicon.ico"/>
</head>
<body>
<div id="main">
<nav class="navbar navbar-expand-sm">
<ul class="navbar-nav ml-auto" style="border-radius: 8px;">
<li class="nav-item">
<a class="nav-link" href="blog"> Blog </a>
</li>
<li class="nav-item">
<a class="nav-link" href="events.html"> Events </a>
</li>
<li class="nav-item">
<a class="nav-link" href="members.html"> Members </a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://linkedin.com/company/luthercss"> LinkedIn </a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://github.com/luthercss"> GitHub </a>
</li>
</ul>
</nav>
<div class="center">
<div class="contain">
<div class="row">
<div class="col col-md-6 col-lg-4 col-sm-12">
<img
class="align-baseline"
src="/static/images/logo.svg"
alt="Generic placeholder image"
/>
</div>
<div class="col col-md-6 col-lg-8 col-sm-12">
<h2 class=""">ACM Luther College</h2>
<hr>
<p>Welcome to the <strong>Computer Science Society</strong> at Luther
College. We are the ACM student chapter on campus with over 160
members, working to foster discussion, organize social events and
provide workshops on the latest technologies in Computer Science and
Data Science.
</p>
<a href="https://forms.gle/6eeomq93d2KjQH7x6">
<button class="btn btn-success">Join Us!</button>
</a>
</div>
</div>
</div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.1.9/p5.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.topology.min.js"></script>
<script>
VANTA.TOPOLOGY({
el: "#main",
mouseControls: false,
touchControls: false,
gyroControls: false,
minHeight: 200.0,
minWidth: 200.0,
scale: 1.0,
scaleMobile: 1.0,
color: 0x8ed2d2,
backgroundColor: 0xffffff,
});
</script>
</body>
</html>