-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcss1.html
41 lines (38 loc) · 1.61 KB
/
css1.html
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
<!doctype html>
<html>
<head>
<title>What is WEB?</title>
<meta charset="utf-8">
</head>
<!--a 태그와 h1 태그는 폰트태그와 다름. a는 문장이 링크라는 것을 알려주고, h1은 제목이라는 정보를 알려줌. 폰트 정보는 어쩐 정보도 담고 있지 않음. 따라서 정보가 아닌 디자인 코드가 섞이면 웹페이지의 가치가 떨어질 수 있음-->
<!--링크가 굉장히 많이 달려있음. 만약 a 태그가 1억개 달려있고, 색깔을 매일 바꿔달라고 요구한다면? 따라서 디자인과 구조를 구분하는 것이 필요함.-->
<body>
<h1><font color="blue">What is WEB?</font></h1>
<ol>
<li><a href="7. Complete.html"><font color="red">html</font></a></li>
<li><a href="7-1. document construction.html"><font color="red">javascript</font></a></li>
<li><a href="7-2. Complete.html"><font color="red">css</font></a></li>
</ol>
<ul>
<li>Yeonu Kim</li>
<li>Junghwa Kim</li>
<li>Yonghee Kin</li>
<li>Inu Kim</li>
</ul>
<br>
<h3>HTML</h3>
<p>
<br><a href="https://www.w3.org/TR/html5/" target=_self title="Definition of Html">html</a>은 <strong><u>웹문서</u>를 만들기 위하여</strong> 사용하는
<br>기본적인 웹 언어의 한 종류이다.
</p>
<p style="margin-top:45px;">
<img src="https://s3-ap-northeast-2.amazonaws.com/opentutorials-user-file/module/3135/7648.png"
width="30%">
<p style="margin-top:45px;">
<p>
웹 서버에 html 문서를 저장하고 있다가
<br>클라이언트가 특정 html 페이지를 요청하면
<br>해당 html 문서를 클라이언트로 전송한다.
</p>
</body>
</html>