일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 구글 안드로이드 개발
- 안드로이드 2.0 개발
- objective-c
- MapView
- 안드로이드 배경화면
- 안드로이드 개발 2.0
- 안드로이드2.0
- 안드로이드2.0개발
- Form Stuff
- android
- 스카이 안드로이드폰 시리우스 K양 동영상
- 아이폰 배경화면
- 영어
- SKY 시리우스
- 안드로이드 바탕화면
- 안드로이드 개발 강좌
- 하루한마디영어
- 아이폰 바탕화면
- 구글안드로이드
- 안드로이드
- 안드로이드폰
- 하루 한마디 영어
- sky 시리우스폰
- 구글 안드로이드
- 스마트폰 배경화면
- 스카이 안드로이드폰 시리우스
- 인기있는 블로그 만들기
- 안드로이드개발
- 안드로이드 개발
- 안드로이드 개발 2.0 강좌
- Today
- Total
moozi
bootstrap연습문제01 풀이 본문
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Boot스트랩연습</title>
<!-- 뷰포트 ------------------------------------------->
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bootstrap연습</title>
<!-- 부트스트랩CSS -->
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<!-- jQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<!-- 부트스트랩 JavaScript -->
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<style>
.jumbotron{
background-color: #1E2759;
color:white;
text-align: center;
padding:250px 25px;
}
.bg-grey{
background-color: #F2EBDC;
}
.container-fluid{
padding:60px 50px;
}
.logo{
font-size: 200px;
}
/* 미디어쿼리 768px이하에서는 텍스트와 아이콘이 중앙정렬되고 상하여백을 줌. 검색창의 크기를 조절함. */
@media screen and (max-width: 768px) {
.container-fluid{
text-align: center;
}
.col-md-4 {
margin: 50px 0;
}
.search{ width:50%;display:inline;vertical-align: middle;}
}
</style>
</head>
<body>
<div class="jumbotron">
<h1>TIS정보기술 교육센터</h1>
<p>정부지원IT전문교육 운영</p>
<form class="form-inline" action="https://search.naver.com/search.naver" method="get">
<input type="text" name="query" class="form-control search" size="50" placeholder="검색어를 입력하세요">
<input type="submit" class="btn btn-danger" value="Search">
</form>
</div>
<div class="container-fluid">
<div class="row">
<div class="col-md-8">
<h1>TIS정보기술교육센터 소개</h1>
<p>TIS정보기술교육센터에서는 정부지원IT전문교육을 운영하고 있습니다.</p>
</div>
<div class="col-md-4">
<span class="glyphicon glyphicon-signal logo"></span>
</div>
</div>
</div>
<div class="container-fluid bg-grey">
<div class="row">
<div class="col-md-4">
<span class="glyphicon glyphicon-globe logo"></span>
</div>
<div class="col-md-8">
<h1>TIS정보기술교육센터 연혁</h1>
<div>
<ul class="list-group" style="width:85%;">
<li class="list-group-item">
<span class="glyphicon glyphicon-apple"></span>
2013년 설립</li>
<li class="list-group-item">
<span class="glyphicon glyphicon-apple"></span> 2013년 설립</li>
<li class="list-group-item">
<span class="glyphicon glyphicon-apple"></span> 2013년 설립</li>
</ul>
</div>
</div>
</div>
</div>
<div class="container-fluid text-center">
<h3>교육과정</h3>
<p>정부지원IT교육과정</p>
<div class="row">
<h4>구직자과정</h4>
<div class="col-md-4"></div>
<div class="col-md-4"></div>
<div class="col-md-4"></div>
</div>
<div class="row">
<h4>재직자과정</h4>
<div class="col-md-4"></div>
<div class="col-md-4"></div>
<div class="col-md-4"></div>
</div>
</div>
</body>
</html>
'TIS_2016 > HTML5_3기' 카테고리의 다른 글
bootstrap04.html (0) | 2016.07.22 |
---|---|
bootstrap03.html (0) | 2016.07.22 |
7/21 bootstrap03.html (0) | 2016.07.21 |
Bootstrap연습문제01 (0) | 2016.07.21 |
7/21 bootstrap02.html (0) | 2016.07.21 |