index.html 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title> Sample </title>
  5. </head>
  6. <style>
  7. body{
  8. background:#15161d;
  9. color:hsla(0,0%,100%,0.8);
  10. text-align:center;
  11. }
  12. .button {
  13. display: inline-block;
  14. border-radius: 4px;
  15. background-color: #f4511e;
  16. border: none;
  17. color: #FFFFFF;
  18. text-align: center;
  19. font-size: 28px;
  20. padding: 20px;
  21. width: 200px;
  22. transition: all 0.5s;
  23. cursor: pointer;
  24. margin: 5px;
  25. }
  26. .button span {
  27. cursor: pointer;
  28. display: inline-block;
  29. position: relative;
  30. transition: 0.5s;
  31. }
  32. .button span:after {
  33. content: '\00bb';
  34. position: absolute;
  35. opacity: 0;
  36. top: 0;
  37. right: -20px;
  38. transition: 0.5s;
  39. }
  40. .button:hover span {
  41. padding-right: 25px;
  42. }
  43. .button:hover span:after {
  44. opacity: 1;
  45. right: 0;
  46. }
  47. </style>
  48. <body class="center" >
  49. <h2 class="center" > Just a Sample </h2>
  50. <h5 class="center"> developed by </h5>
  51. <a class="center" href="http://me.yehigo.com/?red=restcpp/"><h1> Pintu Meena</h1> </a>
  52. </br>
  53. <a class="button" style="vertical-align:middle" href="http://yehigo.com?we=restcpp/"><span>yehigo.com</span> </a>
  54. </body>
  55. </html>