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
81 lines (72 loc) · 2.51 KB
/
index.html
File metadata and controls
81 lines (72 loc) · 2.51 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
<!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>2024100098</p>
<p><strong>전공: </strong>컴퓨터공학부</p>
<p><strong>이메일: </strong>eoueono.koreatech.ac.kr</p>
<h3>
<a href="https://github.com/eoueono">Github 주소</a></p>
</h3>
</section>
<section class="card">
<h2>인사말</h2>
<p>
안녕하세요! 항상 행복한 전서영입니다! <br>
저의 취미는 독서입니다. 책을 읽을 때 잡생각이 사라지고 몰입할 수 있어 좋아합니다. <br>
아직 많이 부족하지만 BCSD Lab에서 열심히 배우고 많은 것을 얻어가고 싶습니다. <br>
화이팅~~~~!! <br>
</p>
</section>
<section class="card">
<h2>Web 퀴즈!</h2>
<ol>
<li class="card">
<h3>
HTTP Method 종류를 아는대로 설명해주세요.
</h3>
<div>
GET, POST, PUT, DELETE, OPTIONS 등이 있습니다.
GET 는 리소스 조회,
POST : 등록, 요청 데이터 처리
PUT : 리소스 덮어쓰기 (해당 리소스가 없으면 생성)
DELETE : 리소스 삭제
OPTIONS : 대상 리소스에 대한 통신 가능 옵션(메소드)을 설명 <br>
</div>
</li>
<li class="card">
<h3>
인터넷과 웹의 차이에 대해 설명해주세요.
</h3>
<div>
인터넷은 컴퓨터가 서로 연결되어 통신을 주고받는 컴퓨터끼리의 네트워크를 일컫는 말이고,
웹은 그 인터넷상에 정보가 얽혀있는 무형의 정보 네트워크를 말합니다. <br>
</div>
</li>
<li class="card">
<h3>
www.naver.com을 치면 무슨 일이 일어날까요?
</h3>
<div>
네이버 사이트로 이동됩니다. <br>
</div>
</li>
</ol>
</section>
<footer>
<p>감사합니다 :)</p>
</footer>
</body>
</html>