-
Notifications
You must be signed in to change notification settings - Fork 0
/
forumquestionsform.html
133 lines (113 loc) · 5.83 KB
/
forumquestionsform.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-111541774-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-111541774-1');
</script>
<title>The Progressive Young Democrats</title>
<meta name="description" content="Submit question for #TX2018 Hidalgo Democratic Party Forum hosted by @RGVDemStudents">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="keywords" content="RGV, Rio Grande Valley, Hidalgo, Democrats, UTRGV">
<!-- twitter summary card meta data -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@rgvdemstudents" />
<meta name="twitter:title" content="The Progressive Young Democrats" />
<meta name="twitter:description" content="Submit question for #TX2018 Hidalgo Democratic Party Forum hosted by @RGVDemStudents " />
<meta name="twitter:image" content="photos\tx2018hidalgodemforum.png" />
<!-- facebook summary card meta data -->
<meta property="og:url" content="http://rgvdemstudents.club" />
<meta property="og:type" content="website" />
<meta property="og:title" content="The Progressive Young Democrats" />
<meta property="og:description" content="Submit question for #TX2018 Hidalgo Democratic Party Forum hosted by @RGVDemStudents" />
<meta property="og:image" content="photos\tx2018hidalgodemforum.png" />
<meta property="fb:app_id" content="199059900651602" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script defer src="https://use.fontawesome.com/releases/v5.0.2/js/all.js"></script>
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet" type="text/css">
<link rel="stylesheet" type="text/css" href="mystyle.css">
</head>
<body id="myPage" data-spy="scroll" data-target=".navbar" data-offset="60">
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="http://rgvdemstudents.club/"><img class="navbar-brand" src="PYDLOGOwobackground.png" alt="organisation logo"></a>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav navbar-right">
<li><a href="http://rgvdemstudents.club/">HOME</a></li>
</ul>
</div>
</div>
</nav>
<!-- Container (Contact Section) -->
<div class="container-fluid bioimgbg">
<img style='width: 100%' src="photos\tx2018hidalgodemforum.png" alt="banner with title: #TX2018 Hidalgo Democratic Party">
<p>
</p>
</div>
<div class="container-fluid bioimgbg">
<h1 class="txt-darkblue">Join us for the Tx2018 Hidalgo Primary Forum <br />Feb 8, 2018 at the Echo Hotel and Conference Center</h1>
<a class="txt-darkblue" href="https://www.facebook.com/events/174861316457948/">RSVP on Facebook event. Click here.</a>
<br>
<br>
<link href='https://actionnetwork.org/css/style-embed-whitelabel-v3.css' rel='stylesheet' type='text/css' />
<script src='https://actionnetwork.org/widgets/v3/form/hidalgo-democratic-primary-debate?format=js&source=widget'></script>
<div id='can-form-area-hidalgo-democratic-primary-debate' class="txt-darkblue" style='width: 100%'>
<!-- this div is the target for our HTML insertion -->
</div>
</div>
</div>
<footer class="container-fluid text-center">
<a href="#myPage" title="To Top">
<span class="glyphicon glyphicon-chevron-up"></span>
</a>
</footer>
<script>
$(document).ready(function() {
// Add smooth scrolling to all links in navbar + footer link
$(".navbar a, footer a[href='#myPage']").on('click', function(event) {
// Make sure this.hash has a value before overriding default behavior
if (this.hash !== "") {
// Prevent default anchor click behavior
event.preventDefault();
// Store hash
var hash = this.hash;
// Using jQuery's animate() method to add smooth page scroll
// The optional number (900) specifies the number of milliseconds it takes to scroll to the specified area
$('html, body').animate({
scrollTop: $(hash).offset().top
}, 900, function() {
// Add hash (#) to URL when done scrolling (default click behavior)
window.location.hash = hash;
});
} // End if
});
$(window).scroll(function() {
$(".slideanim").each(function() {
var pos = $(this).offset().top;
var winTop = $(window).scrollTop();
if (pos < winTop + 600) {
$(this).addClass("slide");
}
});
});
})
</script>
</body>
</html>