Created
June 12, 2017 02:56
-
-
Save johnscillieri/5c18904df5278bc0a09c7c31b4ecd798 to your computer and use it in GitHub Desktop.
HTML for a basic image gallery
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
<html> | |
<head> | |
<title>Image Gallery</title> | |
<link rel="stylesheet" type="text/css" href="index.css" /> | |
</head> | |
<body> | |
<div class="content"> | |
<div class="picture-frame" id="picture-frame"></div> | |
<div id="picture-id-label"></div> | |
<div id="date-label"></div> | |
</div> | |
<script type="text/javascript" src="http://code.jquery.com/jquery-1.11.0.min.js"></script> | |
<script type="text/javascript" src="index.js"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment