uploaded my html file in code folder and updated the Readme

This commit is contained in:
singhbir 2018-10-02 20:48:35 +05:30
parent 59392a897a
commit 596f50ba2c
2 changed files with 60 additions and 0 deletions

View File

@ -21,6 +21,14 @@ This repository is for anyone to create pull requests during Hacktoberfest 2018,
Start adding your names here:
### BenTechy66
- I am a young developer in India interested in c++,html/css,java(android).
- I'm currently a computer science student!
- My hobbies include:
- Coding
- Gaming
- [![github-alt][github-img]](https://github.com/singhbir)
### Hafpaf
- Software student
- Small electronics enthutiast.

52
code/singhbir.html Normal file
View File

@ -0,0 +1,52 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>singhbir</title>
</head>
<style>
body{
background-color: #4e504a ;
}
h2{
text-align: center;
margin: 0 auto;
margin-top: 300px;
color: white;
}
a{
font-size: 2em;
border: 2px solid black;
border-radius:30px;
background: linear-gradient(90deg,#03a9f4,#f441a5,#ffeb3b,#03a9f4);
background-size: 200%;
color: black;
text-decoration: none;
}
a:hover{
animation: helo 1.5s linear infinite;
}
@keyframes helo{
0%{
background-position: 0% ;
}
100%{
background-position: 200%;
}
}
</style>
<body>
<div>
<h2>
<a href="https://www.github.com/singhbir">Connect with Singh_bir</a><br>
hover on above button
</h2>
</div>
</body>
</html>