실습문제 1-2

WEB/TRAINNING 2017. 11. 4. 19:19 |

2. 다음 HTML5 페이지는 간단한 오류를 포함하고 있다. 오류를 수정하라.


1
2
3
4
5
6
7
8


9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html>
<head>
    <title>오류를 찾으세요</title>
<style>
    h3
    {    
        text-align: center /* 끝에 ;을 삽입하기*/
        color: darkred;    
    }
    span
    {    
        color : blue; 
        font-size: 20px;
    }
</style>
</head>
<body>
<h3>Elvis Prsley</h/* </h>를 </h3>로 바꾸기 */
He was an American singer and actor. In November 1956,
he made his film debut in <span>Love Me Tender</span>.
</body>
</html>
cs






 

Posted by 너래쟁이
: