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
79 lines (67 loc) · 2.33 KB
/
index.html
File metadata and controls
79 lines (67 loc) · 2.33 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
<!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>학번: 2022136142</strong></p>
<p><strong>전공: 컴퓨터공학부</strong></p>
<p><strong>이메일: wieltm6540@naver.com</strong></p>
<h3>
<a href="https://github.com/chlgodnr">Github 주소</a></p>
</h3>
</section>
<section class="card">
<h2>인사말</h2>
<p>안녕하세요. 저의 취미는 숙면입니다. 8시간 이상 자면 머리가 맑아져서 참 좋습니다.<br>
3학년이나 됐는데 잘 못 하는것 같아서 방향성을 잡고자 백엔드 트랙에 지원하게 됐습니다. <br>
</p>
</section>
<section class="card">
<h2>Web 퀴즈!</h2>
<ol>
<li class="card">
<h3>
HTTP Method 종류를 아는대로 설명해주세요.<br>
</h3>
<div>
GET : 데이터 얻기<br>
POST: 데이터를 추가 <br>
PUT : 데이터를 갱신<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>