본문 바로가기

Study/HTML5,CSS,JQuery

[jQueryMobile] hello world

<!DOCTYPE html> 
<html> 
<head> 
<meta charset="UTF-8"> 
<title>Insert title here</title> 
<!-- jQueryMobile은 순서 바꾸면 안된다. 1.css, 2.jquery...js, 3.jquery.mobile...js 순으로 작성 --> 
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" /> 
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script> 
<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script> 
</head> 
<body> 
<!-- jQueryMobile은 page 안에 있는 것만 화면에 보여준다. --> 
<div data-role="page"> 
    <!-- header와 footer는 하나의 옵션이다. 사용해도 되고 사용하지 않아도 된다. --> 
    <!-- data-role="header/content/footer": 위치 조정 
         data-position="fixed": 화면 고정 --> 
    <div data-role="header" data-position="fixed"> 
        <h1>머리글</h1> 
    </div> 
    <div data-role="content"> 
        본문: 안녕 
    </div> 
    <div data-role="footer" data-position="fixed"> 
        <h2>바닥글</h2> 
    </div> 
</div>     
</body> 
</html>