-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathindex.html
42 lines (39 loc) · 1.83 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
<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
<!-- <link href="https://fonts.googleapis.com/css?family=Exo" rel="stylesheet"> -->
<link rel="stylesheet" href="index.css"/>
<link rel="stylesheet" href="home.css"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Pymavs</title>
</head>
<body>
<div class="body" >
<!-- HEADER -->
<div class="main-header">
<div class="banner-image"></div>
<nav>
<a href="#" class="active" >Home.py</a>
<a href="./about.html">About.py</a>
<a href="./pages/events.html">Events.py</a>
<a href="https://pymavs.github.io/blog/">Blog.py</a>
</nav>
</div>
<div class="container home-container">
<div class="content">
<h1 class="home-text">Empowering Python programmers at the University of Texas at Arlington to innovate, network, and teach.</h1>
<div class="btn-group">
<a href="https://github.us18.list-manage.com/subscribe?u=ca60262c67543f2faeb7f0fc8&id=cb9f43de90" class="btn btn-red">Sign-up</a>
<a href="./about.html" class="btn btn-black">Learn More</a>
</div>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/2.0.2/TweenMax.min.js"></script>
<script src="animation.js"></script>
<script src="index.js"></script>
</body>
</html>