마크업/Html & Css
HTML 각종 태그 연습
Rainbow🌈Coder
2022. 3. 17. 16:50
728x90
HTML 각종 태그 연습 중...
<html>
<head>
<title>BokJuMoney 복주머니</title>
</head>
<body>
<p>복주머니를 열어보시겠어요?</p>
<section>section은 구역지정할 때 쓰기 좋다.</section>
<div>div는 최소 단위 박스</div>
<p>p는 단락</p>
<img
src="https://cdn.pixabay.com/photo/2015/02/21/03/29/korean-folk-village-643931_960_720.jpg"
alt="복주머니"
/>
<a
href="https://terms.naver.com/entry.naver?docId=1189911&cid=40942&categoryId=32094"
target="_blank"
>복주머니란?</a
>
<button>이것은버튼이아니다</button>
<div>
<span>ID : </span>
<input type="text" />
<!--<input type="number" />-->
<span>Password : </span>
<input type="password" />
<button>로그인</button>
</div>
<ol>
<li>first</li>
<li>second</li>
<li>third</li>
</ol>
</body>
</html>
728x90