30 lines
560 B
HTML
30 lines
560 B
HTML
<!DOCTYPE html>
|
|
<html lang="ko">
|
|
<head>
|
|
<!-- Required meta tags -->
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
<!-- Bootstrap CSS -->
|
|
<link href="../dist/main.css" rel="stylesheet" />
|
|
<title>Hello, world!</title>
|
|
</head>
|
|
|
|
<body>
|
|
<h1>Hello, world!</h1>
|
|
|
|
<p>Hello</p>
|
|
<button
|
|
type="button"
|
|
class="btn btn-primary"
|
|
data-bs-toggle="tooltip"
|
|
data-bs-placement="top"
|
|
title="Tooltip on top"
|
|
>
|
|
버튼
|
|
</button>
|
|
|
|
<script src="../dist/main.js"></script>
|
|
</body>
|
|
</html>
|