-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path04.html
44 lines (41 loc) · 994 Bytes
/
04.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>웹 페이지의 구성 요소</title>
<style>
body {
background-color: linen;
color: green;
margin-left: 40px;
margin-right: 40px;
}
h3 {
text-align: center;
color: darkred;
}
hr {
height: 10px;
border: solid grey;
background-color: grey;
}
span {
color: blue;
font-size: 20px;
}
</style>
<script>
function show() {
document.getElementById("fig").src = "../../media/shrek.png";
}
</script>
</head>
<body>
<h3>Elvis Presley</h3>
<hr>
<div><img id="fig" src=""></div>
He was an American singer and actor. In November 1956,
he made his film debut in <span onmouseover="show()">Love Me Tender</span>.
He is often referred to as "<span>the King of Rock and Roll</span>".
</body>
</html>