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

WON.dev

chapter07 : label 본문

WEB.BOOTSTRAP

chapter07 : label

GAWON 2023. 5. 22. 09:18
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Label</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">
		<h1>Bootstrap Badge</h1>
		<a href="#">받은 편지함 <span class="badge badge-secondary">100</span>
		</a>
		<button class="btn btn-info">
			<span class="badge">123</span>
		</button>

		<h1>Bootsrap Label</h1>
		<h3>
			레이블<span class="label label-default">New</span>
		</h3>
	</div>

</body>
</html>

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

chapter03 : alert  (0) 2023.05.22
chapter04 : button  (0) 2023.05.22
chapter05 : from  (0) 2023.05.22
chapter06 : modal  (0) 2023.05.22
chapter08 : paging  (0) 2023.05.22