<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- jquery mobile -->
<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>
<!-- /jquery mobile 끝 -->
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile.structure-1.4.5.min.css" />
<!-- 사용자 css 및 jquery -->
<link rel="stylesheet" href="css/index.css">
<script src="js/index.js"></script>
<!-- /사용자 css 및 jquery -->
</head>
<body>
<div id="main" data-role="page">
<div data-role="header" data-theme="a">
<h2 id="logo">Learning comja</h2>
</div>
<div data-role="content" data-theme="a" id="content">
<form class="form">
<input type="text" name="search" id="search" placeholder="search" ><i class="fa fa-search"></i>
</form>
<ul data-role="listview" data-inset="true">
<li class="list"><a href="#gallery_img">
<img src="img/camera.png" alt="gallery" class="ui-li-thumb">
<h3 class="title">갤러리</h3>
</a>
</li>
<li class="list"><a href="#">
<img src="img/mobile.png" alt="gallery" class="ui-li-thumb" style="width:10%; left:10px;">
<h3 class="title">사이트소개</h3>
</a>
</li>
<li class="list"><a href="#">
<img src="img/movie.png" alt="gallery" class="ui-li-thumb" >
<h3 class="title">동영상강의</h3>
</a>
</li>
<li class="list"><a href="#">
<img src="img/board.png" alt="gallery" class="ui-li-thumb">
<h3 class="title">게시판</h3>
</a>
</li>
</ul>
</div>
<div data-role="footer" data-theme="a" id="footer" data-position="fixed">
<address>경기도 의정부시 의정부도 센트럴빌딩</address>
</div>
</div>
</body>
</html>
#logo{
height:70px;
background:url(../img/logo1.png);
background-size:20%;
background-repeat:no-repeat;
background-position:50% 0;
margin:0 auto 10px;
padding-top:50px; box-sizing:border-box;
}
.form{position:relative;}
.fa-search{position:absolute; right:10px; top:10px;}
.title{
color:black;
padding-top:10px;
}
.ui-li-thumb{width:20%; padding-left:20px; padding-top:10px;}
#footer{ display:table; height:60px;}
address{display:table-cell; vertical-align:middle; text-align:center;}