PM 스쿨을 듣기전 컴퓨터 기초 지식을 쌓기 위해 웹 개발 강의를 듣고 있는 중이다.
1주차에는 html,css로 정적 웹페이지를 꾸며 github에 배포하는 방법을 배운다.
우선, html는 태그를 이용해 만들어지는데, <div> 코드를 자주 사용한다.
모든 코드를 외울 필요는 절대 없고 사용할 때마다 찾아보면 알아서 외워진다.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
<!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>
span 태그입니다: 특정 <span style="color:red">글자</span>를 꾸밀 때 써요
<hr>
a 태그입니다: <a href="http://naver.com/"> 하이퍼링크 </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>
|
cs |
css는 html을 꾸며주는 언어다. 폰트 크기를 키워주기도 하고, 배경 색깔을 바꿔주기도 하면 박스 크기를 조절하는 등 여러 꾸미기에 사용된다.
html보다 더 복잡해보이나, 이것도 몇 번 해보면 자주 쓰는 것들을 위주로 외워지니 크게 외울 생각은 할 필요는 없다.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
<style>
* {
font-family: 'Gowun Dodum', sans-serif;
}
.mytitle {
width: 100%;
height: 250px;
background-image: linear-gradient(
0deg,
rgba(0, 0, 0, 0.5),
rgba(0, 0, 0, 0.5)
),
url('https://movie-phinf.pstatic.net/20210715_95/1626338192428gTnJl_JPEG/movie_image.jpg');
background-position: center;
background-size: cover;
color: white;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.mytitle > button {
width: 200px;
height: 50px;
background-color: transparent;
color: white;
border-radius: 50px;
border: 1px solid white;
margin-top: 10px;
}
.mytitle > button:hover {
border: 2px solid white;
}
.mycomment {
color: gray;
}
.mycards {
margin: 20px auto 0px auto;
width: 95%;
max-width: 1200px;
}
.mypost {
width: 95%;
max-width: 500px;
margin: 20px auto 0px auto;
padding: 20px;
box-shadow: 0px 0px 3px 0px gray;
}
.mybtns {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
margin-top: 20px;
}
.mybtns > button {
margin-right: 10px;
}
.form-star{
width: 95%;
margin-top:10px;
display: flex;
}
</style>
|
cs |
html 안에서 css를 사용하려면 아래와 같이 style태그 안에서 사용해야 한다. css 코드를 모듈화 하고 싶으면, 아래와 같이 html의 head 태그에 link태그를 이용하여 삽입한다.
<!-- style.css 파일을 같은 폴더에 만들고, head 태그에서 불러오기 -->
<link rel="stylesheet" type="text/css" href = "(css파일이름).css">
CSS를 더 쉽고 예쁘게 만들어놓은 부트스트랩이라는 것이 있다. 해당 라이브러리를 이용하면 공통된 기본 디자인(테이블, 폼 등)을 예쁘고 쉽게 만들 수 있다. 단점은 커스터마이징을 크게 할 수 없다는 것이다. 부트스트랩에 있는 것만 사용한다고 하면 좋은 툴이 될 것이다.
사용하기 위해서는 header 태그에 아래와 같은 코드를 삽입한다.
1
2
3
4
5
6
7
8
9
10
11
|
<head>
...
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"></script>
<title>스파르타코딩클럽 | 부트스트랩 연습하기</title>
</head>
|
cs |
다음으로 최종과제 제출이다.
아래와 같이 완료하였다.
https://qhftkf1.github.io/mystudy/
이코완!
728x90
'개발 > STUDY' 카테고리의 다른 글
면접 예상 질문을 통한 React 기본 개념 정리 (0) | 2024.05.17 |
---|---|
필기 공부 (0) | 2024.05.13 |
[SOILD] 단일 책임 원칙(Single Responsibility Principle) (0) | 2022.08.25 |
[javascript] return 값에 함수를 반환하는 이유 (0) | 2022.08.17 |
[시스템프로그래밍]프로세스 (0) | 2021.08.11 |