Advertisement
404Coder

My website CODE (for share purposes) WORKING LINKS

Aug 29th, 2024
337
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 2.55 KB | Source Code | 0 0
  1. NOTE: THIS IS MY CODE IM JUST POSTING IT TO SHARE CREDITS FOR CODE ARE FOR ME
  2.  
  3.  
  4.  
  5. <DOCTYPE! html>
  6. <html>
  7. <link rel="Stylesheet" href="main.css">
  8. <title class="tab-name">shop.com</title>
  9. <head>
  10. <body>
  11. <div class="container">
  12. <h1 class="text-size">shop</h1>
  13.  <div class="form-area">
  14.  
  15.  <form>
  16.    <input placeholder="Email-address" required={true}>
  17.    <p>
  18.    <input placeholder="PO-box" required={true}>
  19.    <p>
  20.    <input placeholder="Phone-Number" required={true}>
  21.    <p>
  22.    <input placeholder="card-number" required={true}>
  23.    <p>
  24.  <input type="checkbox">accept terms and agreements<p>
  25.    </p>
  26.    <button type="submit" onClick="{() => this.handleClick()}>Order"><a href="purchasecompleted.html">Order</button>
  27.    </p>
  28.    </p>
  29.    </p>
  30.    </div>
  31.  </div>
  32. </body>
  33. </head>
  34.  
  35.  
  36.  </html>
  37. <link rel="Stylesheet" href="main.css">
  38. <h1 class="text-size">purchase completed</h1>
  39. <hr>thank you for your purchase, if you need digital receipt click Down below for a digital receipt
  40. </hr>
  41. <button class="receipt"><a href="getreceipt.html">Get receipt(digital)</a></button><i class="italic-font">optional(recommended)</i>
  42. <link rel="Stylesheet" href="main.css">
  43. <h2>receipt has been sent to your E-mail, if you dont see it check your junk or spam folder.</h2>
  44. <iframe srcdoc="details -> Bought: confirmed / card: yes / includes-GST: no / ABN: noob123 / order-ID: 44eeA03egFsajHd62txjD4W"></iframe>
  45.  
  46. <h1>important: please keep this receipt in your email if you happen to have it, if you dont, thats fine!</h1>
  47.  
  48. <-- css -->
  49. /*body layout and decoration */
  50. body {
  51.   background-image: url("https://cdn.wallpapersafari.com/15/98/9XzHOr.jpg");
  52.  text-align: center;
  53. }
  54.  
  55. /*text decor*/
  56. h1 {
  57.     text-align: center;
  58.     color: orange;
  59. }
  60.  
  61. /*input layout arrangement*/
  62. input {
  63.     text-align: center;
  64.     height: 5%;
  65.     margin: 0.4em;
  66. }
  67. /*checkbox layout arrangement*/
  68. input[type=checkbox] {
  69.     width: 17px;
  70.    
  71. }
  72. /*button styling*/
  73. button {
  74.     width: 105px;
  75.     padding-bottom: 10px;
  76.     padding-top: 10px;
  77.     background-color: lightgreen;
  78.  
  79.             display: inline-block;
  80.             font-size: 16px;
  81.             margin: 4px 2px;
  82.             cursor: hover;
  83.             border-radius: 15%;
  84.             border: none;
  85.             text-decoration: none;         
  86. }
  87.  
  88.  
  89. iframe {
  90.    width: 800px;   
  91.    padding-top: 10px;
  92.    padding-bottom: 0.5px;
  93. }
  94.    
  95.    
  96.    
  97.    
  98.     //instructions for setup\\
  99.     ⬇️⬇️⬇️⬇️
  100.    
  101.     <-- download notepad++ then make files the same name as the name as website.html -> purchasecompleted.html -> getreceipt.html -> main.css -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement