-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
113 lines (103 loc) · 2.31 KB
/
index.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome</title>
</head>
<style>
body{
background-image:url(p12.png);
padding: 10px;
background-repeat : no-repeat;
background-attachment: fixed;
background-size: cover;
background-position: center center;
height: 100vh;
width: 100vw;
display:flex;
justify-content: center;
align-items: center;
font-size:larger;
}
.btn:hover {
background-color:mediumorchid;}
.btn {
border: 2px solid transparent;
background: #E55423;
color: #ffffff;
font-size: 16px;
line-height: 25px;
padding: 10px 0;
text-decoration: none;
text-shadow: none;
border-radius: 3px;
box-shadow: none;
transition: 0.25s;
display: block;
width: 250px;
margin: 0 auto;
}
input[type=submit]{
Border-radius: 100px;
Width: 150px;
Background-color: cornflowerblue;
Color: white;
Margin-top: 20p;}
@import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&display=swap');
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
background-color: #151719;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.waviy {
position: relative;
-webkit-box-reflect: below -20px linear-gradient(transparent, rgba(0,0,0,.2));
font-size: 60px;
}
.waviy span {
font-family: 'Alfa Slab One', cursive;
position: relative;
display: inline-block;
color: #fff;
text-transform: uppercase;
animation: waviy 1s infinite;
animation-delay: calc(.1s * var(--i));
}
@keyframes waviy {
0%,40%,100% {
transform: translateY(0)
}
20% {
transform: translateY(-20px)
}
}
a{
text-decoration: none;
}
</style>
<body>
<center>
<div class="waviy">
<span style="--i:1">w</span>
<span style="--i:2">e</span>
<span style="--i:3">l</span>
<span style="--i:4">c</span>
<span style="--i:5">o</span>
<span style="--i:6">m</span>
<span style="--i:7">e</span>
</div>
<br>
<br>
<br>
<a href="button.html"><input type="submit" value="Click here" class="btn btn-primary btn-large btn-block"></a>
</center>
</body>
</html>