ksw_devlog
TIL 3주 2일차 본문
[웹 퍼블리싱]
HTML 기초 :
- HTML은 크게 head와 body로 구성되며, head안에는 페이지의 속성 정보를, body안에는 페이지의 내용을 담습니다.
- head 안에 들어가는 대표적인 요소들: meta, script, link, title 등
- body 안에 들어가는 대표적인 요소들!
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>스파르타코딩클럽 | HTML 기초</title>
</head>
<body>
<!-- 구역을 나누는 태그들 -->
<div>나는 구역을 나누죠</div>
<p>나는 문단이에요</p>
<ul>
<li> bullet point!1 </li>
<li> bullet point!2 </li>
</ul>
<!-- 구역 내 콘텐츠 태그들 -->
<h1>h1은 제목을 나타내는 태그입니다. 페이지마다 하나씩 꼭 써주는 게 좋아요. 그래야 구글 검색이 잘 되거든요.</h1>
<h2>h2는 소제목입니다.</h2>
<h3>h3~h6도 각자의 역할이 있죠. 비중은 작지만..</h3>
<hr>
a 태그입니다: <a href="http://google.com/" target="_blank">하이퍼링크</a>
<hr>
img 태그입니다: <img src="https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png" />
<hr>
input 태그입니다: <input type="text" />
<hr>
button 태그입니다: <button> 버튼입니다</button>
<hr>
textarea 태그입니다: <textarea></textarea>
</body>
</html>
[CSS 기초]
<head> ~ </head> 안에 <style> ~ </style> 로 공간을 만들어 작성합니다.
태그를 바로 가리켜서 꾸며주기
h1 {
color: red;
}
이름표를 붙이고 꾸며주기
<div class="box">
<div>첫 번째 구역</div>
<div>두 번째 구역</div>
</div>
------------>
.box {
background-color: green;
color: white;
}
사이즈 설정하기
.box {
background-color: green;
color: white;
width: 800px;
height: 800px;
}
.first {
background-color: red;
width: 300px;
height: 200px;
}
.second {
background-color: blue;
width: 200px;
height: 200px;
}
배치 바꾸기
.box {
background-color: green;
color: white;
width: 800px;
height: 800px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.first {
background-color: red;
width: 300px;
height: 200px;
}
.second {
background-color: blue;
width: 200px;
height: 200px;
}
[자바스크립트 기본]
주로 <script> </script> 안에 작성되며, 선택자(Selector)로 특정 요소를 선택해 클릭과 같은 부가적인 기능을 추가하는 코드입니다.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<button id="btn" type="button">버튼</button>
<script>
// id 가 btn 인 요소에 alert 을 표시하는 클릭 이벤트 부여하기
document.getElementById('btn').addEventListener('click', function() {
alert('버튼 클릭 이벤트');
})
</script>
</body>
</html>
[jQuery 기본]
Javascript를 좀 더 쉽게 다룰수 있도록 2006년에 출시된 자바스크립트 라이브러리입니다.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
</head>
<body>
<button id="btn" type="button">버튼</button>
<script>
// id 가 btn 인 요소에 alert 을 표시하는 클릭 이벤트 부여하기
$('#btn').on('click', function() {
alert('버튼 클릭 이벤트');
})
</script>
</body>
</html>
'TIL' 카테고리의 다른 글
TIL 3주 4일차 (0) | 2022.11.17 |
---|---|
TIL 3주 3일차 (0) | 2022.11.16 |
TIL 3주 1일차 (0) | 2022.11.14 |
WIL 2주차 (0) | 2022.11.14 |
TIL 2주 5일차 (0) | 2022.11.11 |