forked from BCSDLab-Edu/web-introduction
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
101 lines (87 loc) · 3.97 KB
/
index.html
File metadata and controls
101 lines (87 loc) · 3.97 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="images/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="css/style.css">
<title>BCSDLab Web 과제</title>
</head>
<body>
<header>
<h1>안녕하세요, 박소영입니다!</h1>
</header>
<section class="card">
<h2>기본 정보</h2>
<p><strong>이름: </strong>박소영</p>
<p><strong>학번: </strong>2021136052</p>
<p><strong>전공: </strong>컴퓨터공학부</p>
<p><strong>이메일: </strong>soyeongbag@gmail.com</p>
<h3>
<a href="https://github.com/P-Soyoung">Github 주소</a></p>
</h3>
</section>
<section class="card">
<h2>인사말</h2>
<p>
안녕하세요! 21학번 컴퓨터공학부 <strong>박소영</strong>입니다!<br>
저의 취미는 드라마 보기, 맛있는 거 먹기, 배부르게 먹고 산책하기입니다.<br>
요즘 '눈물의 여왕'이라는 드라마를 보는데 매우매우 재밌으니 강추합니다!<br>
<img src="images/drama.jpg" width="150"><br>
(넷플릭스에도 있어용)<br>
웹을 배워보고자 프론트엔드에 지원하게 되었습니다.<br>
</p>
</section>
<section class="card">
<h2>Web 퀴즈!</h2>
<ol>
<li class="card">
<h3>
HTTP Method 종류를 아는대로 설명해주세요.
</h3>
<strong>HTTP 메서드:</strong> 클라이언트와 서버 사이에 이뤄지는 요청과 응답 데이터를 전송하는 방식.<br>
<br>
<div>
<strong>GET:</strong> 리소스 조회.<br>
<strong>POST:</strong> 등록, 요청 데이터 처리.<br>
<strong>PUT:</strong> 리소스 덮어쓰기(해당 리소스가 없으면 생성).<br>
<strong>PATCH:</strong> 리소스 부분 변경.<br>
<strong>DELETE:</strong> 리소스 삭제.<br>
<strong>HEAD:</strong> GET과 동일하나 메시지 부분(Body)를 제외하고, 상태 줄과 헤더만 반환.<br>
<strong>OPTIONS:</strong> 대상 리소스에 대한 통신 가능 옵션을 설명.<br>
<strong>CONECT:</strong> 대상 자원으로 식별되는 서버에 대한 터널을 설정.<br>
<strong>TRACE:</strong> 대상 리소스에 대한 경로를 따라 메시지 루프백 테스트를 수행.<br>
</div>
</li>
<li class="card">
<h3>
인터넷과 웹의 차이에 대해 설명해주세요.
</h3>
<div>
<strong>인터넷:</strong> 컴퓨터가 서로 연결되어 통신을 주고받는 컴퓨터끼리의 네트워크.<br>
<strong>웹:</strong> 그 인터넷상에 정보가 얽혀있는 무형의 정보 네트워크.<br>
<br>
+ 즉, 웹보다 인터넷이 더 광범위한 범주이며, 인터넷으로 여러 기능을 할 수 있는데 그 중에서 HTTP 프로토콜을 사용하는 웹이 있는 것.
</div>
</li>
<li class="card">
<h3>
www.naver.com을 치면 무슨 일이 일어날까요?
</h3>
<div>
'www.naver.com' URL 해석<br>
-> 브라우저가 www.naver.com의 IP주소를 찾는다<br>
-> 브라우저가 해당 서버와 TCP연결을 시작한다.<br>
-> 브라우저가 웹 서버에 HTTP 요청을 보낸다.<br>
-> 서버가 요청을 처리하고 응답을 보낸다.<br>
-> 서버가 HTTP 응답을 보낸다<br>
-> 브라우저가 HTML컨텐츠를 보여준다.<br>
</div>
</li>
</ol>
</section>
<footer>
<p>감사합니다 :)</p>
</footer>
</body>
</html>