23 lines
491 B
HTML
23 lines
491 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>
|
|
<nav
|
|
class="navbar navbar-expand fixed-top navbar-dark bg-primary shadow-sm"
|
|
>
|
|
<h1 class="navbar-brand">Elex</h1>
|
|
</nav>
|
|
|
|
<script src="../dist/main.js"></script>
|
|
</body>
|
|
</html>
|