Advertisement
trainer_pemrograman

ajax_covid

Jul 6th, 2023 (edited)
1,089
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 4.22 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7.     <title>Belajar AJAX | Gamelab Indonesia</title>
  8.  
  9.     <link rel="preconnect" href="https://fonts.googleapis.com">
  10.     <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  11.     <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap" rel="stylesheet">
  12.  
  13.     <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.0/jquery.min.js"></script>
  14.  
  15.  
  16.     <style>
  17.    
  18.         * {
  19.             font-family: 'Poppins', sans-serif;
  20.         }
  21.  
  22.             body {
  23.                 background-color: #F1F5F8;
  24.  
  25.                 display: flex;
  26.                 align-items: center;
  27.                 justify-content: center;
  28.  
  29.                 margin: 0;
  30.                 width: 100vw;
  31.                 height: 100vh;
  32.             }
  33.  
  34.             input {
  35.                 border: 2px solid #C9D8E4;
  36.             }
  37.  
  38.             button {
  39.                 background-color: #FF7F11;
  40.                 border: 0;
  41.                 color: #fff;
  42.                 cursor: pointer;
  43.             }
  44.  
  45.             input, button {
  46.                 border-radius: 5px;
  47.                 font-size: 1.3rem;
  48.                 padding: 8px;
  49.             }
  50.  
  51.         .card-statistik {
  52.             display: none;
  53.            
  54.             background-color: #fff;
  55.             border-radius: 5px;
  56.             margin: 30px 0;
  57.             padding: 15px;
  58.         }
  59.  
  60.             .font-light {
  61.                 font-weight: 300;
  62.             }
  63.  
  64.             .font-medium {
  65.                 font-weight: 400;
  66.             }
  67.  
  68.             .font-bold {
  69.                 font-weight: 600;
  70.             }
  71.  
  72.             h1, h2, h3, h4, h5, h6 {
  73.                 margin: 10px 0;
  74.                 margin-top: 0;
  75.             }
  76.  
  77.             p {
  78.                 margin-top: 0;
  79.             }
  80.  
  81.             .mb-3 {
  82.                 margin-bottom: 1.2rem;
  83.             }
  84.  
  85.             .statistik-title {
  86.                 color: #14527B;
  87.                 font-size: 2rem;
  88.                 margin-bottom: 0;
  89.             }
  90.  
  91.             .statistik-subtitle {
  92.                 color: #98AFC3;
  93.                 font-size: 1.15rem;
  94.                 margin-bottom: 25px;
  95.             }
  96.  
  97.             .data-title {
  98.                 color: #98AFC3;
  99.                 font-size: 1rem;
  100.                 margin-bottom: 5px;
  101.             }
  102.  
  103.             .data-value {
  104.                 color: #14527B;
  105.                 font-size: 1.2rem;
  106.                 margin-bottom: 0px;
  107.             }
  108.  
  109.             .flex-container {
  110.                 display: flex;
  111.                 flex-wrap: wrap;
  112.                 align-items: center;
  113.             }
  114.  
  115.                 .flex-container > div {
  116.                     flex: 0 0 50%;
  117.                     width: 50%;
  118.                 }
  119.  
  120.     </style>
  121. </head>
  122. <body>
  123.     <div>
  124.         <input type="text" id="name" name="name" placeholder="Masukkan nama negara">
  125.         <button type="button">Cek Statistik</button>
  126.  
  127.         <div class="card-statistik">
  128.             <h4 class="font-bold statistik-title">Statistik Covid</h4>
  129.             <h6 class="font-medium statistik-subtitle">
  130.                 Negara :
  131.                 <span class="nama-negara">Indonesia</span>
  132.             </h6>
  133.  
  134.             <div class="flex-container">
  135.                 <div class="mb-3">
  136.                     <p class="data-title">Kasus Aktif</p>
  137.                     <p class="data-value active-case"></p>
  138.                 </div>
  139.  
  140.                 <div class="mb-3">
  141.                     <p class="data-title">Kasus Kritis</p>
  142.                     <p class="data-value critical-case"></p>
  143.                 </div>
  144.  
  145.                 <div>
  146.                     <p class="data-title">Kasus Baru</p>
  147.                     <p class="data-value new-case"></p>
  148.                 </div>
  149.  
  150.                 <div>
  151.                     <p class="data-title">Sembuh</p>
  152.                     <p class="data-value recovered"></p>
  153.                 </div>
  154.             </div>
  155.         </div>
  156.     </div>
  157.  
  158.     <script>
  159.  
  160.     </script>
  161. </body>
  162. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement