낙서/메모장
html, css, flex
천재짱_develop
2022. 10. 6. 17:11
<!--
1. <!DOCTYPE html> : 문서 유형이 html 타입
2. <html> : 웹 문서의 처음 ~ 끝을 알림
3. <head> : 웹 브라우저 (크롬, 익스플로어 등)가 웹 문서(HTML) 을 해석할 수 있도록 정의하는 부분
4. <body> : HTML 의 몸체, 실질적으로 웹 페이지에 드러나는 부분
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>제목</title>
<style></style>
<link></link>
<script></script>
</head>
<body>
<header></header>
<footer></footer>
</body>
</html>
전에 썼던 html, css, flex 관련 글
https://seo-developer.tistory.com/21
class vs id
https://seo-developer.tistory.com/24
css 속성은 여기서 확인
https://www.w3schools.com/cssref/default.asp
html : <div class="이름 지정">
css : .이름지정 { color : #fff; }
이런식으로 지정할 수 있다.
Flex 는 ... 부트스트랩처럼 단을 나누기에 적합한 기능인데.
약간 때려맞추기 식으로 하다보니까 잘 안먹혀서 슬펐다