-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhtmlcss3(1).html
More file actions
42 lines (26 loc) · 824 Bytes
/
htmlcss3(1).html
File metadata and controls
42 lines (26 loc) · 824 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title> Belajar CSS 3 </title>
<style>
#text{
/*box-shadow: horizontal vertical blur-radius color*/
text-shadow: 5px 10px 4px grey;
}
#kata1{
width: 50px;
overflow: scroll;
/*text-overflow: ellipsis;*/
/*word-wrap: break-word;*/
}
</style>
</head>
<body>
<h1> Tex Shadow </h1>
<div id="text"> SUPERSEMAR </div> <br>
<h1> Word wrap - Text Overflow </h1>
<div id="kata1"> adalah surat perintah yang ditandatangani oleh Presiden Soekarno pada tanggal 11 Maret 1966 yang memberikan mandat kepada Letnan Jenderal Soeharto, selaku Panglima Komando Operasi Keamanan dan Ketertiban (Kopkamtib) </div> <br>
<br>
© inisial K
</body>
</html>