관리 메뉴

moozi

jquery mobile 기본구문 본문

TIS_2016/주말반_4기

jquery mobile 기본구문

moozi 2016. 9. 24. 15:24

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <title>영화소개 - 밀정</title>

    

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    

    <link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" />


    <script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>


    <script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>

</head>

<body>

   <div data-role="page" id="page1">

       <div data-role="header">

           <h1>밀정</h1>

        </div>

       <div data-role="content">

           밀정

           <a href="#page2" rel="external">2page로</a>

       </div>

       <div data-role="footer">

           &copy;Copyright all right reserved by CGV.

       </div>

   </div>

   

    

</body>

</html>

'TIS_2016 > 주말반_4기' 카테고리의 다른 글

movie  (0) 2016.10.01
introduce2.html  (0) 2016.09.24
loader.html  (0) 2016.09.10
반응형 웹페이지 샘플 - photo  (0) 2016.09.10
반응형 웹 샘플  (0) 2016.09.10
Comments