Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!doctype html>
- <html lang="ko">
- <head>
- <meta charset="UTF-8">
- <title>jQuery UI</title>
- <link rel="stylesheet" href="http://code.jquery.com/ui/1.11.4/themes/start/jquery-ui.css">
- <script src="http://code.jquery.com/jquery-1.11.2.js"></script>
- <script src="http://code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
- </head>
- <body>
- <div id="tabs">
- <ul>
- <li><a href="#tabs-1">탭1</a></li>
- <li><a href="#tabs-2">탭2</a></li>
- <li><a href="#tabs-3">탭3</a></li>
- </ul>
- <div id="tabs-1">
- <p>탭1.....</p>
- </div>
- <div id="tabs-2">
- <p>탭2.....</p>
- </div>
- <div id="tabs-3">
- <p>탭2.....</p>
- </div>
- </div>
- <script>
- </script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment