Team:Virginia/Notebook
From 2014.igem.org
(Difference between revisions)
Line 1: | Line 1: | ||
+ | <!doctype html> | ||
+ | |||
<html lang="en"> | <html lang="en"> | ||
<head> | <head> | ||
- | <meta charset="utf-8"> | + | <meta charset="utf-8" /> |
<title>jQuery UI Tabs - Default functionality</title> | <title>jQuery UI Tabs - Default functionality</title> | ||
- | <link rel="stylesheet" href="//code.jquery.com/ui/1. | + | <link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" /> |
- | <script src="//code.jquery.com/jquery-1. | + | <script src="http://code.jquery.com/jquery-1.9.1.js"></script> |
- | <script src="//code.jquery.com/ui/1. | + | <script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script> |
- | + | <link rel="stylesheet" href="/resources/demos/style.css" /> | |
<script> | <script> | ||
$(function() { | $(function() { | ||
Line 12: | Line 14: | ||
}); | }); | ||
</script> | </script> | ||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
</head> | </head> | ||
<body> | <body> | ||
Line 33: | Line 19: | ||
<div id="tabs"> | <div id="tabs"> | ||
<ul> | <ul> | ||
- | + | <li><a href="#tabs-1">Tab 1</a></li> | |
- | + | <li><a href="#tabs-2">Tab 2</a></li> | |
- | + | <li><a href="#tabs-3">Tab 3</a></li> | |
</ul> | </ul> | ||
<div id="tabs-1"> | <div id="tabs-1"> | ||
- | < | + | <p>Tab one content.</p> |
- | + | ||
- | + | ||
</div> | </div> | ||
<div id="tabs-2"> | <div id="tabs-2"> | ||
- | + | <p>tab two content.</p> | |
</div> | </div> | ||
<div id="tabs-3"> | <div id="tabs-3"> | ||
- | < | + | <p>tab three content.</p> |
- | + | ||
- | + | ||
</div> | </div> | ||
</div> | </div> | ||
- | |||
</body> | </body> | ||
</html> | </html> |
Revision as of 18:10, 4 August 2014
<!doctype html>