Created
May 14, 2012 22:36
-
-
Save anonymous/2697871 to your computer and use it in GitHub Desktop.
My HTML code
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 PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
<title>Dokument bez názvu</title> | |
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js?ver=3.3.1"></script> | |
<script type="text/javascript" src="cycle.js"></script> | |
<script type="text/javascript" src="myjs.js"></script> | |
<link rel="stylesheet" href="style.css" /> | |
</head> | |
<body> | |
<div id="page-wrapper"> | |
<div id="slider-wrapper"> | |
<ul id="main-slider"> | |
<li> | |
<img src="monitor.png" /> | |
<h2>First slide</h2> | |
<p>This is first description</p> | |
</li> | |
<li> | |
<img src="monitor.png" /> | |
<h2>Second slide</h2> | |
<p>This is second description</p> | |
</li> | |
<li> | |
<img src="monitor.png" /> | |
<h2>Third slide</h2> | |
<p>This is third description</p> | |
</li> | |
</ul> | |
</div> | |
<a href="#" id="prev">prev</a> | |
<a href="#" id="next">next</a> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment