-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcss2.html
47 lines (42 loc) · 1.32 KB
/
css2.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
42
43
44
45
46
47
<!doctype html>
<html>
<head>
<title>What is WEB?</title>
<meta charset="utf-8">
<style>
a
{color:red;}
</style>
</head>
<body>
<h1>What is WEB?</h1>
<!--html이 아닌 css의 문법으로 내용을 변경해야 함을 알려줘야 함 -> stlye 태그 사용-->
<!--a 태그를 사용하는 부분은 모두 빨간색으로 변경함. 중복되는 코드를 제거할 수 있다는 점이 중요!!-->
<ol>
<li><a href="7. Complete.html">html</a></li>
<li><a href="7-1. document construction.html">javascript</a></li>
<li><a href="7-2. Complete.html">css</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>