html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html lang="en">
<head>
<title>Page Title</title>
<meta charser="utf-8"/>
<link rel="stylesheet" href="style.css"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
</head>
<body>
<div class="frame">
<div class="board">
<div class="color-1"></div>
<div class="color-2"></div>
<div class="color-3"></div>
</div>
</div>
</body>
</html>
Enter to Rename, Shift+Enter to Preview
css
css
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
body {
background: linear-gradient(180deg, #191970, #FAFAD2, #808000);
}
.frame {width:500px;
border: 30px solid #008080;
padding: 20px;
margin: 50px auto;
}
.board {width: 500px;
height: 600px;
background-color: #595959;
overflow: hidden;
filter: blur(x);
}
.color-1 {width: 450px;
height: 150px;
background-color: #808000;
margin: 25px auto;
}
.color-2 {width: 470px;
height: 155px;
Enter to Rename, Shift+Enter to Preview
js
js
1
alert("This page was created by Michael Adesanya ");
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Запуск