index.html 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <!-- HTML Meta Tags -->
  5. <title>Welcome to WebStick!</title>
  6. <meta name="description" content="A tiny web server powered by ESP8266, designed by tobychui">
  7. <meta name="viewport" content="width=device-width, initial-scale=1" >
  8. <!-- Facebook Meta Tags -->
  9. <meta property="og:url" content="https://imuslab.com">
  10. <meta property="og:type" content="website">
  11. <meta property="og:title" content="Welcome to WebStick!">
  12. <meta property="og:description" content="A tiny web server powered by ESP8266, designed by tobychui">
  13. <meta property="og:image" content=" ">
  14. <!-- Twitter Meta Tags -->
  15. <meta name="twitter:card" content="summary_large_image">
  16. <meta property="twitter:domain" content="imuslab.com">
  17. <meta property="twitter:url" content="https://imuslab.com">
  18. <meta name="twitter:title" content="Welcome to WebStick!">
  19. <meta name="twitter:description" content="A tiny web server powered by ESP8266, designed by tobychui">
  20. <meta name="twitter:image" content=" ">
  21. <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
  22. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.css" />
  23. <script src="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.js"></script>
  24. <style>
  25. .character.ring{
  26. width: 320px;
  27. height: 320px;
  28. margin-top: 20px;
  29. border: 5px solid #f9c729 !important;
  30. background-color: white;
  31. border-radius: 50%;
  32. display: inline-block;
  33. }
  34. .character.infill{
  35. width: 260px;
  36. height: 260px;
  37. margin-top: 25px;
  38. background-color: #ffcb2e;
  39. border-radius: 50%;
  40. display: inline-block;
  41. }
  42. .charactercard{
  43. width: 375px !important;
  44. border: 0px solid transparent;
  45. -webkit-box-shadow: none !important;
  46. box-shadow: -3px 12px 19px 5px rgba(204,204,204,0.59) !important;
  47. }
  48. .dark.divider{
  49. height: 3px;
  50. background: #020202;
  51. width: 60px;
  52. margin-bottom: 1.4em;
  53. margin-top: 1.6em;
  54. }
  55. .breadcrumb .section{
  56. font-weight: 300;
  57. font-size: 1.2em;
  58. }
  59. .blacklink{
  60. color: #020202;
  61. transition: margin-top ease-in-out 0.1s, color ease-in-out 0.1s !important;
  62. }
  63. .blacklink:hover{
  64. color: #020202;
  65. opacity: 0.7;
  66. margin-top: -1.2em !important;
  67. }
  68. .linkbuttons{
  69. padding: 2em;
  70. }
  71. .linkbuttons .ui.white.button{
  72. background: white !important;
  73. padding: 1.2em;
  74. margin-top: 0.8em;
  75. }
  76. .linkbuttons .ui.white.button:hover{
  77. opacity: 0.8;
  78. }
  79. </style>
  80. </head>
  81. <body>
  82. <div class="ui container" align="center">
  83. <br>
  84. <div class="ui fluid card charactercard">
  85. <div class="image" style="background-color: #ffe38d;" align="center">
  86. <div class="character ring">
  87. <div class="character infill">
  88. <img src="img/selfie.jpg" style="border-radius: 50%; width: 100%; user-select: none; pointer-events: none;">
  89. </div>
  90. </div>
  91. <h1 style="font-weight: bolder;">Hello visitor!</h1>
  92. <div class="dark divider"></div>
  93. <div class="ui breadcrumb">
  94. <div class="section">Software Engineer</div>
  95. <div class="divider"> / </div>
  96. <div class="section">Electronics Maker</div>
  97. </div>
  98. <div class="linkbuttons">
  99. <a class="ui fluid white button" href="about.html">About WebStick</a>
  100. <a class="ui fluid white button" href="blog/index.html">My Blog</a>
  101. <a class="ui fluid white button" href="down/"><i class="ui download icon"></i> Downloads</a>
  102. <a class="ui fluid white button" href="tool/qr.html"><i class="ui qrcode icon"></i> QR Code Generator</a>
  103. <div class="ui divider"></div>
  104. <a class="ui fluid white button" href="admin/"><i class="ui sign in icon"></i> Admin Panel</a>
  105. </div>
  106. </div>
  107. <div class="content" align="center">
  108. <a class="blacklink" href="https://www.youtube.com/channel/UCzbcGOZHO2BH-ANX7W0MGIg"><i class="big youtube icon"></i></a>
  109. <a class="blacklink" href="https://blog.imuslab.com"><i class="big wordpress icon"></i></a>
  110. <a class="blacklink" href="mailto:[email protected]"><i class="big envelope icon"></i></a>
  111. <a class="blacklink" href="https://github.com/tobychui/"><i class="big github icon"></i></a>
  112. <a class="blacklink" href="https://www.facebook.com/ImusLaboratory"><i class="big facebook icon"></i></a>
  113. </div>
  114. </div>
  115. <br>
  116. <p>This site is hosted on a WebStick designed by <a href="https://imuslab.com">imuslab</a></p>
  117. <br>
  118. </div>
  119. </body>
  120. </html>