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
83 lines (74 loc) · 2.74 KB
/
index.html
File metadata and controls
83 lines (74 loc) · 2.74 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
<!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>2024100686</p>
<p><strong>전공: </strong>메카트로닉스공학부</p>
<p><strong>이메일: </strong>jeongseo15yeon@gmail.com</p>
<h3>
<a href="https://github.com/Seo15yeon">Github 주소</a></p>
</h3>
</section>
<section class="card">
<h2>인사말</h2>
<p>
안녕하세요! 알고리즘 공부를 열심히 하는 정서연입니다.<br>
저의 취미는 넷플릭스 보기입니다. 드라마보다는 영화를 좋아합니다.<br>
서버에 대해 공부하고 싶어서 백엔드 트랙에 지원했습니다.<br>
</p>
</section>
<section class="card">
<h2>Web 퀴즈!</h2>
<ol>
<li class="card">
<h3>
HTTP Method 종류를 아는대로 설명해주세요.
</h3>
<div>
GET:데이터를 받아오고 싶을 때 사용<br>
POST:데이터를 전송하고 싶을 때 사용<br>
PUT:정보를 수정할 때 사용(덮어쓰기 형식)<br>
PETCH:정보를 수정할 때 사용(일부분만)<br>
DELETE:데이터를 삭제<br>
HTML 태그를 적극 활용해도 좋습니다.
</div>
</li>
<li class="card">
<h3>
인터넷과 웹의 차이에 대해 설명해주세요.
</h3>
<div>
인터넷은 서로 연결된 컴퓨터 네트워크를 통해 정보나 데이터 등을 전달하며 소통하는 것을 의미<br>
웹은 인터넷으로 서로 연결된 컴퓨터를 통해 공유할 수 있는 문서들을 의미<br>
HTML 태그를 적극 활용해도 좋습니다.
</div>
</li>
<li class="card">
<h3>
www.naver.com을 치면 무슨 일이 일어날까요?
</h3>
<div>
페이지에 필요한 데이터들을 get요청보내고 응답을 받아 정보를 보여주게된다. <br>
이 때 데이터는 json 형태로 날아온다. <br>
HTML 태그를 적극 활용해도 좋습니다.
</div>
</li>
</ol>
</section>
<footer>
<p>감사합니다 :)</p>
</footer>
</body>
</html>