-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (46 loc) · 2.08 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
<!DOCTYPE html>
<html>
<title>PyLucknow.org</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
body,h1,h2,h3,h4,h5,h6 {font-family: "Lato", sans-serif}
.w3-bar,h1,button {font-family: "Montserrat", sans-serif}
.fa-anchor,.fa-coffee {font-size:200px}
</style>
<body>
<!-- Header -->
<header class="w3-container w3-red w3-center" style="padding:128px 16px">
<h1 class="w3-margin w3-jumbo">PyLucknow</h1>
<p class="w3-xlarge">Python Lucknow Community</p>
<button class="w3-button w3-black w3-padding-large w3-large w3-margin-top">
<a style="text-decoration: none;" href="https://www.facebook.com/PyLucknow/">Facebook</a>
</button>
<button id="sign-up" onclick="signUp();" class="w3-button w3-black w3-padding-large w3-large w3-margin-top">Sign Up</button>
</header>
<!-- Sign-Up Form -->
<div id="sign-up-form">
<iframe src="https://docs.google.com/forms/d/e/1FAIpQLScG0MMtxfJoAkT0BlcJ-FQhL5MD6yaJmaeo95aO9sj7m7TKBw/viewform?embedded=true" width="100%" height="2000px" frameborder="0" marginheight="0" marginwidth="0">Loading...</iframe>
</div>
<!-- Footer -->
<footer class="w3-container w3-padding-64 w3-center w3-opacity">
<div class="w3-xlarge w3-padding-32">
<a style="text-decoration: none;" href="https://www.facebook.com/PyLucknow/"><i class="fa fa-facebook-official w3-hover-opacity"></i></a>
<i class="fa fa-instagram w3-hover-opacity"></i>
<i class="fa fa-snapchat w3-hover-opacity"></i>
<i class="fa fa-pinterest-p w3-hover-opacity"></i>
<i class="fa fa-twitter w3-hover-opacity"></i>
<i class="fa fa-linkedin w3-hover-opacity"></i>
</div>
</footer>
<script>
function signUp() {
document.getElementById("sign-up-form").scrollIntoView();
}
</script>
</body>
</html>