관리 메뉴

moozi

6/22 html5 2반 game.html 본문

카테고리 없음

6/22 html5 2반 game.html

moozi 2015. 6. 22. 12:05

<html>
    <head>
         <!-- 뷰포트 : 디바이스 크기에 맞게 사이즈 조절 -->
        <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no" />
       
        <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="main">
            <div data-role="header" data-theme="c">
                게임스쿨
            </div>
            <div data-role="cotnet">
                게임스쿨은 게임 전문가를 양성합니다.
                <p><a href="#sub" data-transition="slide">게임스쿨 학과소개</a></p>
            </div>
            <div data-role="footer">
                Copyright KOREA IT SCHOOL Allright Rserved.
            </div>       
        </div>
       
        <div data-role="page" id="sub">
            <div data-role="header" data-theme="c">
                게임스쿨 학과소개
            </div>
            <div data-role="cotnet">
                게임디자인학과<br>
                게임프로그래밍학과<br>
                게임기획학과
                <p><a href="#main" data-transition="slide" data-direction="reverse">게임스쿨 메인</a></p>
            </div>
            <div data-role="footer">
                Copyright KOREA IT SCHOOL Allright Rserved.
            </div>       
        </div>
   
    </body>

</html>

 

 


게임스쿨

Comments