-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhtmlcss3(9).html
More file actions
56 lines (44 loc) · 1.21 KB
/
htmlcss3(9).html
File metadata and controls
56 lines (44 loc) · 1.21 KB
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
50
51
52
53
54
55
56
<!DOCTYPE html>
<html>
<head>
<title> Belajar CSS 3 </title>
<!-- Google font -->
<link href="https://fonts.googleapis.com/css2?family=Oswald&display=swap" rel="stylesheet">
<style>
/* Font face */
@font-face {
font-family: nama; /*nama fontnya*/
src: url(sansation_light.woff);
}
div{
font-family: 'Oswald', sans-serif;
width: 150px;
height: 150px;
background: yellow;
overflow-y: scroll;
/*resize: vertical;*/
resize: both;
opacity: 0.5;
}
img{
opacity: 0.5;
transition: opacity 3s;
}
img:hover{
opacity: 1;
}
</style>
</head>
<body>
<h1> Overflow,Resize dan Opacity </h1>
<div>
Awal dari masa pemerintahan di era Orde Baru muncul
setelah dikeluarkannya surat perintah yang berlaku selama kurang lebih 32 tahun pada 11 Maret 1966 hingga 1988.
Diangkatnya Soeharto menjadi Presiden Indonesia juga menandakan era Orde Baru
menggantikan Presiden Soekarno sebelumnya.
</div>
<img src="supersemar1.jpg" width="400">
<br>
© inisial K
</body>
</html>