forked from iamshaunjp/git-playlist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Poland.html
42 lines (39 loc) · 901 Bytes
/
Poland.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Greetings From Poland</title>
<style>
body{
background: grey;
margin: 300px auto;
width: 500px;
}
div{
width: 450px;
height: 140px;
}
div:first-child{
background: white;
}
div:nth-child(2){
background: red;
position: relative;
}
p{
position:absolute;
font-size:40px;
left: 20%;
top: -40%;
display:inline;
transform:rotateZ(-15deg)
}
</style>
</head>
<body>
<div></div>
<div><p>Thank you Ninja!</p></div>
</body>
</html>