-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdrop.html
More file actions
84 lines (76 loc) · 2.13 KB
/
drop.html
File metadata and controls
84 lines (76 loc) · 2.13 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
body {
background-color: blue;
}
.drop {
position: relative;
height: 200px;
width: 200px;
background: #54ABFB;
border-radius: 51% 49% 48% 52% / 62% 44% 56% 38%;
opacity: 0.8;
border: 2px solid #3D93FF;
}
.drop::before {
content: "";
position: absolute;
height: 100%;
width: 100%;
background: #318CFE;
border-radius: 54% 49% 48% 52% / 62% 44% 56% 38%;
box-shadow: -20px 30px 16px #1B6CFB, -40px 60px 32px #1B6CFB, inset -6px 6px 10px #1B6CFB, inset 2px 6px 10px #1A74E5, inset 20px -20px 22px white, inset 40px -40px 44px #A8CEFF;
}
.drop::after {
content: "";
position: absolute;
height: 40px;
width: 40px;
background: #E6FDFB;
border-radius: 44% 56% 46% 54% / 36% 50% 50% 64%;
left: 130px;
top: 40px;
box-shadow: 16px 40px 0 -10px white;
opacity: 0.8;
}
.tile {
position: absolute;
height: 80px;
width: 60px;
background: #C0D6FF;
transform-origin: top;
top: 40px;
left: 500px;
transform: skewY(30deg);
display: flex;
justify-content: center;
place-items: center;
font-size: 26px;
}
</style>
<title></title>
</head>
<body>
<div class="drop"></div>
<p>some plain old html</p>
<p>
<?php
// outputs hi everybody to standard output --
usually a browser
echo "hi everybody.";
// assigns the sum of 2 and 2 to the variable $sum
$sum=2+2
// you can probably guess the output of:
echo "2+2 is $sum"
?>
</p>
<p>more plain old html</p>
<script type="text/javascript">
//display the alart box
var your_name = prompt('please enter your name')
//end hide-->
</script>
</body>
</html>