Last active
March 2, 2017 18:53
-
-
Save bcuz/227d2d446eb4adb3f5bce6a2e4521dea to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Trey's Albums</title> | |
| <link rel="stylesheet" type="text/css" href="css/reset.css"> | |
| <link href="https://fonts.googleapis.com/css?family=Reenie+Beanie" rel="stylesheet"> | |
| <link rel="stylesheet" type="text/css" href="//cdn.jsdelivr.net/jquery.slick/1.6.0/slick.css"> | |
| <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> | |
| <link rel="stylesheet" type="text/css" href="css/style.css"> | |
| </head> | |
| <body> | |
| <div class="header"> | |
| <h1>Trey's Beach Day: June 19</h1> | |
| </div> | |
| <div class="frame"> | |
| <img src="https://s3.amazonaws.com/codecademy-content/programs/img/beach.jpeg"/> | |
| <img src="https://s3.amazonaws.com/codecademy-content/programs/img/boardwalk.jpg"/> | |
| <img src="https://s3.amazonaws.com/codecademy-content/programs/img/parachute.jpeg"/> | |
| <img src="https://s3.amazonaws.com/codecademy-content/programs/img/sun.jpeg"/> | |
| </div> | |
| <script | |
| src="https://code.jquery.com/jquery-3.1.1.min.js" integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8=" crossorigin="anonymous"></script> | |
| <script type="text/javascript" src="//cdn.jsdelivr.net/jquery.slick/1.6.0/slick.min.js"></script> | |
| <script src="js/main.js"></script> | |
| </body> | |
| </html> |
This file contains hidden or 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
| $(document).ready(function () { | |
| $(".frame").slick(); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment