웹사이트 기본구조
style 작성법
구글폰트 적용법
bootstrap 활용법
<head> 웹사이트 속성
<meta> <title>, <style> 포함
</head>
<body> 웹사이트 내용
<div class='background-banner'>
<nav> 상단 바 부분
<main> 주 콘텐츠 부분
<footer> 하단부
</div>
</body>
<link rel="stylesheet" href="style.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Qwitcher+Grypen:wght@400;
700&family=Sixtyfour+Convergence&display=swap');
* {
font-family: "Qwitcher Grypen", cursive;
font-weight: 400;
font-style: normal;
}
</style>
<nav class="navbar border-bottom border-body d-flex justify-content-between" data-bs-theme="dark">