1<!DOCTYPE html>
2<html>
3<head>
4<meta name="viewport" content="width=device-width, initial-scale=1">
5<style>
6.button {
7 padding: 15px 25px;
8 font-size: 24px;
9 text-align: center;
10 cursor: pointer;
11 outline: none;
12 color: #fff;
13 background-color: #4CAF50;
14 border: none;
15 border-radius: 15px;
16 box-shadow: 0 9px #999;
17}
18
19.button:hover {background-color: #3e8e41}
20
21.button:active {
22 background-color: #3e8e41;
23 box-shadow: 0 5px #666;
24 transform: translateY(4px);
25}
26</style>
27</head>
28<body>
29
30<h2>Animated Buttons - "Pressed Effect"</h2>
31
32<button class="button">Click Me</button>
33
34</body>
35</html>
36