Advertisement
UncleBIgBay

Big Talk Project

Feb 15th, 2018
263
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 4.00 KB | None | 0 0
  1. <!DOCtype html>
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  5. <title>BigTalk</title>
  6. <style type="text/css">
  7. input{
  8. background-color:red;
  9. display:block;
  10. margin-right:auto;
  11. margin-left:auto;
  12. }
  13. h1{
  14. background-color:white;
  15. text-align:center;
  16. padding:23px;
  17. box-shadow:4px 5px 6px 7px green;
  18. }
  19. #login{
  20. animation: fade 2s 1s yellow;
  21. text-align:center;
  22. color:white;
  23. }
  24. #signup{
  25. color:white;
  26. text-align:center;
  27. }
  28. body{
  29. font-family:Josefin Sans,sans-serif;
  30. background-color:black;
  31. box-shadow: -6px 7px 85px #008751;
  32. font-family:courier;
  33. }
  34. fieldset {
  35. box-shadow: 2px 3px 4px white;
  36. background-color: ;
  37. width:%;
  38. }
  39. legend {
  40. color:white;
  41. box-shadow: 2px 3px 4px 6px white;
  42. width:25%;
  43. }
  44. a{
  45. text-decoration:none;
  46. }
  47. p{
  48. color:white;
  49. }
  50. .green{
  51. background-color:#008751;
  52. width:20px;
  53. height:20px;
  54. }
  55. table{
  56. float:left;
  57. }
  58. #down{
  59.     background-color:rgba(0, 0, 0, 0);
  60.     color:white;
  61.     border: none;
  62.     outline:none;
  63.     height:30px;
  64.     transition:height 1s;
  65.     -webkit-transition:height 1s;
  66. }
  67. #down:focus {
  68.     height:50px;
  69.     font-size:16px;
  70. }
  71. img{
  72. display:block;
  73. float:center;
  74. margin-left:auto;
  75. margin-right:auto;
  76.  
  77. }
  78. select{
  79. background-color:red;
  80. display:block;
  81. margin-left:auto;
  82. margin-right:auto;
  83. }
  84.  
  85.  
  86. </style>
  87. <script>
  88. var r = confirm("Are you sure you want to Visit this page?");
  89.  
  90. if (r == true) {
  91.  
  92.     x = "Page visited!";
  93.  
  94. } else {
  95.  
  96.     x = "Page cancelled!";
  97.  
  98. }
  99. </script>
  100. </head>
  101. <body onload="alert('you are welcome to Uncle BigBay Project...have fun')">
  102. <div><h1>BIG TALK<table><tr><td class="green"></td> <td class="white"></td> <td class="green"></td> </tr></table></h1><br /><br />
  103. <img src="./101.png" alt="logo" width="100" height="132"/>
  104. <fieldset>
  105. <legend>Logon to Big Talk</legend>
  106. <div id="login"><form>
  107. Username:
  108. <input type="text" value="" name="username" size="50" required="required"><br /><br />
  109. Password:
  110. <input type="password" name="password" value="" size="50" required="required"><br /><br />
  111. <a href=""><input type="button"  value="Login" onclick="alert('Thanks for login on')"></a>
  112. <a href=""><input type="button" value="Reset Password" onclick="alert('NO DataBase yet...Check Back Later')"></a>
  113. </form>
  114. </fieldset>
  115. <br /><br />
  116. </div>
  117. <form id="signup">
  118. <fieldset>
  119. <legend>SignUp</legend><br /><br />
  120. Full Name:<input type="text" value="" size="50" maxlength="" required="required"><br /><br />
  121. Username: <input type="text" name="username" value="" size="50" maxlength="10" required="required"><br /> <br />
  122. Password:<input type="password" name="password" size="50" maxlength="50" required="required"><br /><br />
  123. Telephone: <input type="tel" name="number" size="50" maxlength="15" option="option"><br /><br />
  124. Birth Info:<input type="" name="number" value=" How Old are you?" maxlength="2" size="50"><br /><br />
  125. Interested In:
  126. <input type="checkbox" name="sport">Sport:
  127. <input type="checkbox" name="music">Music:
  128. <input type="checkbox" name="Men">Men:
  129. <input type="checkbox" name="women">Women:
  130. <input type="checkbox" name="Education">Education:<br /><br />
  131. <p>Gender:
  132. <select id="gender" name="gender">
  133. <option selected="selected">Don't Wanna Say</option>
  134. <option value="male">Male</option>
  135. <option value="female">Female</option>
  136. <option value="other">Other</option>
  137. </select>
  138. Religion
  139. <select id="religion" name="religion">
  140. <option selected="selected">CHOOSE</option>
  141. <option value="christian">Christian</option>
  142. <option value="muslim">Muslim</option>
  143. </select>
  144.  
  145. Country:
  146. <select id="nation" name="nation">
  147. <option selected="selected">Nigeria</option>
  148. <option value="Others">Others</option>
  149. </select>
  150. </p>
  151. <a href="#"><input type="button" value="Join"></a>
  152. </fieldset>
  153. </form>
  154. <footer id="down"> <p><strong>Powered</strong> by Walk-In Tech</p><p>Created by: <a href="www.facebook.com/unclebay">Uncle BigBay</a> &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp Contact information: <a href="mailto:walkin2@gmail.com"> E-mail Us</a>.</p> </footer>
  155. </div>
  156. </body>
  157. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement