-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
aa9c1da
commit d5d29d9
Showing
1 changed file
with
50 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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> |