-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathme.html
More file actions
44 lines (40 loc) · 1.01 KB
/
Copy pathme.html
File metadata and controls
44 lines (40 loc) · 1.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
body{
background-image:linear-gradient(135deg ,rgb(46, 9, 9),rgb(109, 76, 14));
}
div{
position: absolute;
top:30%;
left:50%;
transform: translate(-50%,-50%);
color:orange;
}
h2{letter-spacing:2px ;
line-height: 1em;}
span{
letter-spacing: 8px;
font-size:200%;
line-height: 2px;
}
</style>
</head>
<body>
<div >
<h2>
<span>...</span>
<br />
እኛን በመዋረዳችን አስቦናልና ፡ <br />
ምህረቱ ለዘላለም ነዉና ፡
<br />
<span>.....</span>
</h2>
</div>
</body>
</html>