Advertisement
lovelymondayss

timedoor intermediate pertemuan 6

Oct 14th, 2022
1,257
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.26 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.   <head>
  4.     <meta charset="UTF-8" />
  5.     <title>Timedoor Temperature Converter</title>
  6.   </head>
  7.  
  8.   <style>
  9.     body,
  10.     html {
  11.       width: 100%;
  12.       height: 100%;
  13.       margin: 0;
  14.     }
  15.  
  16.     .container {
  17.       width: 100%;
  18.       height: 100%;
  19.     }
  20.  
  21.     .toppane {
  22.       position: relative;
  23.       width: 100%;
  24.       height: 100px;
  25.       border-collapse: collapse;
  26.       background-color: white;
  27.     }
  28.  
  29.     .leftpane {
  30.       position: relative;
  31.       width: 50%;
  32.       height: calc(100% - 100px);
  33.       float: left;
  34.       background-color: white;
  35.       border-collapse: collapse;
  36.     }
  37.  
  38.     .rightpane {
  39.       width: 50%;
  40.       height: calc(100% - 100px);
  41.       position: relative;
  42.       float: right;
  43.       background-color: white;
  44.       border-collapse: collapse;
  45.     }
  46.  
  47.     /* If you want the content centered horizontally and vertically */
  48.     .centered {
  49.       position: absolute;
  50.       top: 50%;
  51.       left: 50%;
  52.       transform: translate(-50%, -50%);
  53.       text-align: center;
  54.     }
  55.  
  56.     #Celcius {
  57.       color: black;
  58.       width: 250px;
  59.       height: 30px;
  60.       font-size: 15px;
  61.       border-style: none;
  62.       border: 5px solid orange;
  63.       text-align: center;
  64.     }
  65.  
  66.     #Fahrenheit {
  67.       color: black;
  68.       width: 250px;
  69.       height: 30px;
  70.       font-size: 15px;
  71.       border-style: none;
  72.       border: 5px solid orange;
  73.       text-align: center;
  74.     }
  75.   </style>
  76.  
  77.   <body>
  78.     <div class="container">
  79.       <div class="toppane">
  80.         <div class="centered">
  81.           <h1>Thermometer Converter</h1>
  82.           <button onclick="convertTemp()">Click to convert</button>
  83.         </div>
  84.       </div>
  85.  
  86.       <div class="leftpane">
  87.         <div class="centered">
  88.           <img src="img/thermo.jpg" alt="Avatar woman" />
  89.           <h2>Termometer Celcius</h2>
  90.           <input type="text" id="Celcius" class="Celcius" />
  91.         </div>
  92.       </div>
  93.  
  94.       <div class="rightpane">
  95.         <div class="centered">
  96.           <img src="img/thermo.jpg" alt="Avatar man" />
  97.           <h2>Termometer Fahrenheit</h2>
  98.           <input type="text" id="Fahrenheit" class="Fahrenheit" />
  99.         </div>
  100.       </div>
  101.     </div>
  102.   </body>
  103.  
  104.   <script></script>
  105. </html>
  106.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement