-
Notifications
You must be signed in to change notification settings - Fork 0
/
text
50 lines (44 loc) · 2.36 KB
/
text
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>slideToggle demo</title>
<style>
p {
width: 400px;
}
</style>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
</head>
<body>
<button><img src="https://40.media.tumblr.com/0b10b863b181a474124a2a38a68fb47d/tumblr_nu609cs7Et1tw44nvo1_400.png" width="20px"></button>
<p>
<!-- Mailchimp -->
<link href="//cdn-images.mailchimp.com/embedcode/slim-081711.css" rel="stylesheet" type="text/css">
<style type="text/css">
#mc_embed_signup{background:#fff; clear:left; font:14px Didot,Times,serif; width:150px;}
/* Add your own MailChimp form style overrides in your site stylesheet or in this style block.
We recommend moving this block and the preceding CSS link to the HEAD of your HTML file. */
</style>
<div id="mc_embed_signup">
<form action="//thecollegiateblog.us5.list-manage.com/subscribe/post?u=4bccc83bc2f43f40ef5379c33&id=545808dab0" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
<div id="mc_embed_signup_scroll">
<label for="mce-EMAIL"><em>Morning Coffee <br> with Courtland</em></label>
I write a newsletter about need-to-know news within fashion, marketing, and sometimes what I ate last weekend.
<bR><br>
<input type="email" value="" name="EMAIL" class="email" id="mce-EMAIL" placeholder="email address" required>
<!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
<div style="position: absolute; left: -5000px;"><input type="text" name="b_4bccc83bc2f43f40ef5379c33_545808dab0" tabindex="-1" value=""></div>
<div class="clear"><input type="submit" value="*click*" name="subscribe" id="mc-embedded-subscribe" class="button"></div>
</div>
</form>
</div>
<!--End mc_embed_signup-->
</p>
<script>
$( "button" ).click(function() {
$( "p" ).slideToggle( "slow" );
});
</script>
</body>
</html>