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
76 lines (67 loc) · 2.29 KB
/
index.html
File metadata and controls
76 lines (67 loc) · 2.29 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
<!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>2019136100</p>
<p><strong>전공: </strong>컴퓨터공학부</p>
<p><strong>이메일: </strong>lyjeonghun@gmail.com</p>
<h3>
<a href="https://github.com/lyjeonghun">Github 주소</a></p>
</h3>
</section>
<section class="card">
<h2>인사말</h2>
<p>
안녕하세요! 벡엔드를 배우는 이정훈입니다.<br>
저의 취미는 농구입니다. 보는것도 좋아하고 활동도 좋아합니다.<br>
최근에는 황현식형한테 흥미를 가져봤는데 꽤나 괜찮은 취미활동이라고 생각합니다<br>
잘생긴 현식형의 나오는 모습이 멋있어보여서 백엔드 트랙에 지원했습니다.<br>
</p>
</section>
<section class="card">
<h2>Web 퀴즈!</h2>
<ol>
<li class="card">
<h3>
HTTP Method 종류를 아는대로 설명해주세요.
</h3>
<div>
GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS, CONNECT, TRACE<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>