Notice
Recent Posts
Recent Comments
Link
«   2024/07   »
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
Tags
more
Archives
Today
Total
관리 메뉴

WON.dev

chapter06 : modal 본문

WEB.BOOTSTRAP

chapter06 : modal

GAWON 2023. 5. 22. 09:19
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Modal</title>
<!-- 모바일 디바이스에서 터치/줌 등을 지원하기 위한 meta 태그 -->
<meta name="viewport" content="width=device-width, initial-scale=1">

<!-- Bootstrap 최신 버전의 css 파일들을 링크 -->
<link rel="stylesheet"	href="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">

<!-- jQuery 최신 버전의 js 파일들을 링크 -->
<script	src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>

<!-- Popper 최신 버전 링크  -->
<script	src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>

<!-- Bootstrap을 이용하기 위한 최신 버전 링크 -->
<script	src="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>

</head>
<body>
	<div class="container">
		<h2>Modal 예시</h2>
		<!-- 모달을 호출하기 위한 버튼 -->
		<button type="button" class="btn btn-primary" data-toggle="modal"
			data-target="#myModal">Modal 열기</button>

		<!-- 모달 -->
		<div class="modal" id="myModal">
			<div class="modal-dialog">
				<div class="modal-content">

					<!-- modal head -->
					<div class="modal-header">
						<h4 class="modal-title">Modal 제목</h4>
						<button type="button" class="close" data-dismiss="modal">&times;</button>
					</div>

					<!-- modal body -->
					<div class="modal-body">Modal 본문</div>

					<!-- modal footer -->
					<div class="modal-footer">
						<button type="button" class="btn btn-danger" data-dismiss="modal">close
						</button>
					</div>

				</div>
			</div>
		</div>
	</div>
</body>
</html>

'WEB.BOOTSTRAP' 카테고리의 다른 글

chapter03 : alert  (0) 2023.05.22
chapter04 : button  (0) 2023.05.22
chapter05 : from  (0) 2023.05.22
chapter07 : label  (0) 2023.05.22
chapter08 : paging  (0) 2023.05.22