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

chapter03 : alert 본문

WEB.BOOTSTRAP

chapter03 : alert

GAWON 2023. 5. 22. 09:19
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>alert</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>알림</h2>
    <div class="alert alert-success">
      <strong>Success!</strong> 성공 또는 긍정적인 메시지 박스
    </div>
    <div class="alert alert-info">
      <strong>Info!</strong> 정보 메시지 박스
    </div>
    <div class="alert alert-warning">
      <strong>Warning!</strong> 경고 메시지 박스
    </div>
    <div class="alert alert-danger">
      <strong>Danger!</strong> 위험 메시지 박스
    </div>
  </div>
</body>
</html>

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

chapter01 : bootstrap  (0) 2023.05.22
chapter02 : table  (0) 2023.05.22
chapter04 : button  (0) 2023.05.22
chapter05 : from  (0) 2023.05.22
chapter06 : modal  (0) 2023.05.22