-
Notifications
You must be signed in to change notification settings - Fork 0
/
inndex.html
77 lines (75 loc) · 2.01 KB
/
inndex.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
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
<!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">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6" crossorigin="anonymous">
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"/>
<title>Firdavs_Dev</title>
<style>
body{
background-color: #ccc;
text-align: center;
}
h1{
color:red;
font-size: 3em;
}
@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
html,body{
display: grid;
height: 100vh;
place-items: center;
background: #000;
}
.btn a{
position: relative;
color: #f5f5f5;
height: 70px;
width: 220px;
display: block;
text-align: center;
border-radius: 10px;
text-decoration: none;
background-image: linear-gradient(115deg,#4fcf70,#fad648,#a767e5,#12bcfe,#44ce7b);
}
.btn a:hover{
animation: rotate 0.4s linear infinite;
}
@keyframes rotate {
100%{
filter: hue-rotate(-360deg)
}
}
.btn a span{
height: 88%;
width: 96%;
background: #111;
display: block;
position: absolute;
top: 50%;
left: 50%;
border-radius: 6px;
line-height: 62px;
font-size: 25px;
transform: translate(-50%, -50%);
}
</style>
</head>
<body>
<h1>Xabar qoldirganiz uchun rahmat!!!</h1><br>
<div class="btn">
<a href="index.html"><span>Orqaga</span></a>
</div>
</body>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
</html>