forked from dhramns/website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (34 loc) · 849 Bytes
/
index.html
File metadata and controls
34 lines (34 loc) · 849 Bytes
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
<head>
<title> Project </title>
</head>
<body style = "background-image:url('images/github3.jpg'); background-size: 100%">
<h2 ALIGN=CENTER>Welcome to Naga-Peter Project!</h2>
<style>
.hello{
font-size: 253%;
color:black;
animation-duration: 1s;
animation-fill-mode: both;
margin-top:5%
}
@keyframes bounce {
0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
40% {transform: translateY(-30px);}
60% {transform: translateY(-15px);}
}
.bounce {
-webkit-animation-name: bounce;
animation-name: bounce;
}
body{
background-image:linear-gradient(
rgba(20,20,20, .2),
rgba(20,20,20, .2)),
url('images/github3.jpg');
background-size: 100%;
}
</style>
<body >
<h2 ALIGN=CENTER class="hello bounce">Hello world!</h2>
</body>
</html>