Advertisement
iNxmi

EDV Project HTML Template

Jan 26th, 2024 (edited)
1,234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 6.94 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.  
  4. <head>
  5.     <meta charset="UTF-8">
  6.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7.     <title>EDV Projekt Memphis Herghelegiu</title>
  8.     <style>
  9.         body {
  10.             zoom: 125%;
  11.  
  12.             background-color: #1a1a2e;
  13.             color: #a8c0ff;
  14.             font-family: 'Arial', sans-serif;
  15.  
  16.             margin: 10px;
  17.         }
  18.  
  19.         p {
  20.             margin: 0px;
  21.             padding: 0px;
  22.         }
  23.  
  24.         .main-container {
  25.             width: 50%;
  26.             align-content: space-evenly;
  27.             margin: auto;
  28.             padding: auto;
  29.         }
  30.  
  31.         .main-container-child {
  32.             width: 100%;
  33.             /* text-align: justify; */
  34.             padding: 10px;
  35.             margin: 15px;
  36.         }
  37.  
  38.         .main-container-child h3 {
  39.             text-align: center;
  40.             text-decoration: underline;
  41.             margin: 0px;
  42.             color: aliceblue;
  43.         }
  44.  
  45.         .container-image {
  46.             background-color: #112240;
  47.             border-radius: 10px;
  48.             padding: 10px;
  49.         }
  50.  
  51.         .container-text {
  52.             border: 1px solid #336699;
  53.             border-radius: 10px;
  54.             white-space: pre-line;
  55.             padding: 10px;
  56.         }
  57.  
  58.         .foot-container {
  59.             display: flex;
  60.             justify-content: space-between;
  61.         }
  62.  
  63.         .table {
  64.             display: flex;
  65.             justify-content: space-evenly;
  66.             margin: 0px;
  67.             padding: 0px;
  68.         }
  69.  
  70.         .table div {
  71.             display: flex;
  72.             flex-direction: column;
  73.             text-align: center;
  74.         }
  75.  
  76.         .table div p {
  77.             margin: 5px;
  78.         }
  79.  
  80.         .t-odd {
  81.             background-color: rgba(255, 255, 255, 0.1);
  82.             border-radius: 5px;
  83.         }
  84.  
  85.         .t-even {
  86.             background-color: rgba(156, 72, 72, 0.1);
  87.             border-radius: 5px;
  88.         }
  89.     </style>
  90. </head>
  91.  
  92. <body>
  93.     <div class="main-container">
  94.         <!-- Title -->
  95.         <h1 style="text-align: center">EDV Projekt Memphis Herghelegiu</h1>
  96.  
  97.         <!-- Chart -->
  98.         <div class="main-container-child container-image">
  99.             <h3>Gewinn-Funktionen</h3>
  100.             <img src="${chart_url}" alt="chart_url" style="width: 100%; height: auto;">
  101.             <div style="display: flex; justify-content: space-around;">
  102.                 <p>x-Achse: Stück</p>
  103.                 <p>y-Achse: Gewinn (€)</p>
  104.                 <p>Break Even Point: ${bep}</p>
  105.             </div>
  106.         </div>
  107.  
  108.         <!-- Product Data Raw -->
  109.         <div class="main-container-child container-text">
  110.             <h3>Produkt Daten (Roh)</h3>
  111.             <div class="table">
  112.                 <div>
  113.                     <p class="t-odd">${data_left_name}</p>
  114.                     <p class="t-even">${data_left_count}</p>
  115.                     <p class="t-odd">${data_left_cost_per_piece}</p>
  116.                     <p class="t-even">${data_left_fixcosts}</p>
  117.                     <p class="t-odd">${data_left_price_per_piece}</p>
  118.                     <p class="t-even">${data_left_tax_percentage}</p>
  119.                 </div>
  120.  
  121.                 <div>
  122.                     <p class="t-odd">Produkt Name</p>
  123.                     <p class="t-even">Anzahl (Stück)</p>
  124.                     <p class="t-odd">Produktionskosten (€ / Stück)</p>
  125.                     <p class="t-even">Fixkosten (€)</p>
  126.                     <p class="t-odd">Verkaufspreis (€ / Stück)</p>
  127.                     <p class="t-even">Steuersatz (%)</p>
  128.                 </div>
  129.  
  130.                 <div>
  131.                     <p class="t-odd">${data_right_name}</p>
  132.                     <p class="t-even">${data_right_count}</p>
  133.                     <p class="t-odd">${data_right_cost_per_piece}</p>
  134.                     <p class="t-even">${data_right_fixcosts}</p>
  135.                     <p class="t-odd">${data_right_price_per_piece}</p>
  136.                     <p class="t-even">${data_right_tax_percentage}</p>
  137.                 </div>
  138.             </div>
  139.         </div>
  140.  
  141.         <!-- Product Data Calculated -->
  142.         <div class="main-container-child container-text">
  143.             <h3>Produkt Daten (Berechnet)</h3>
  144.             <div class="table">
  145.                 <div>
  146.                     <p class="t-odd">${data_left_name}</p>
  147.                     <p class="t-even">${data_left_total_cost}</p>
  148.                     <p class="t-even">${data_left_total_cost_per_piece}</p>
  149.                     <p class="t-odd">${data_left_revenue}</p>
  150.                     <p class="t-odd">${data_left_revenue_per_piece}</p>
  151.                     <p class="t-even">${data_left_taxes}</p>
  152.                     <p class="t-even">${data_left_taxes_per_piece}</p>
  153.                     <p class="t-odd">${data_left_profit}</p>
  154.                     <p class="t-odd">${data_left_profit_per_piece}</p>
  155.                 </div>
  156.  
  157.                 <div>
  158.                     <p class="t-odd">Produkt Name</p>
  159.                     <p class="t-even">Gesamtkosten (€)</p>
  160.                     <p class="t-even">Gesamtkosten (€ / Stück)</p>
  161.                     <p class="t-odd">Umsatz (€)</p>
  162.                     <p class="t-odd">Umsatz (€ / Stück)</p>
  163.                     <p class="t-even">Steuern (€)</p>
  164.                     <p class="t-even">Steuern (€ / Stück)</p>
  165.                     <p class="t-odd">Gewinn (€)</p>
  166.                     <p class="t-odd">Gewinn (€ / Stück)</p>
  167.                 </div>
  168.  
  169.                 <div>
  170.                     <p class="t-odd">${data_right_name}</p>
  171.                     <p class="t-even">${data_right_total_cost}</p>
  172.                     <p class="t-even">${data_right_total_cost_per_piece}</p>
  173.                     <p class="t-odd">${data_right_revenue}</p>
  174.                     <p class="t-odd">${data_right_revenue_per_piece}</p>
  175.                     <p class="t-even">${data_right_taxes}</p>
  176.                     <p class="t-even">${data_right_taxes_per_piece}</p>
  177.                     <p class="t-odd">${data_right_profit}</p>
  178.                     <p class="t-odd">${data_right_profit_per_piece}</p>
  179.                 </div>
  180.             </div>
  181.         </div>
  182.  
  183.         <!-- GPT Output -->
  184.         <div class="main-container-child container-text">
  185.             <h3>Vergleich (${gpt_model} -> ${gpt_cost} USD)</h3>
  186.             <p>${gpt_text}</p>
  187.         </div>
  188.  
  189.         <!-- Prompt -->
  190.         <div class="main-container-child container-text">
  191.             <h3>Positive Prompts</h3>
  192.             <p>${prompt_positive}</p>
  193.             <h3>Negative Prompts</h3>
  194.             <p>${prompt_negative}</p>
  195.             <h3>Prompt</h3>
  196.             <p>${prompt}</p>
  197.         </div>
  198.  
  199.         <!-- Footer -->
  200.         <div class="main-container-child foot-container" style="display: flex; justify-content: space-around;">
  201.             <p>Version: 1.0.8</p>
  202.             <p>Memphis Herghelegiu</p>
  203.         </div>
  204.     </div>
  205. </body>
  206.  
  207. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement