-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcss4.html
49 lines (46 loc) · 1.19 KB
/
css4.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
48
49
<!doctype html>
<html>
<head>
<title>What is WEB?</title>
<meta charset="utf-8">
<style>
a {
color:red;
text-decoration: none;
}
h1 {
font-size:3em;
text-align: center;
}
</style>
</head>
<body>
<h1>What is WEB?</h1>
<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" style="color:red; text-decoration: underline;">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>