Untitled

 avatar
unknown
plain_text
a month ago
1.2 kB
6
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Insulting Unit Converter</title>
  <link rel="stylesheet" href="styles.css">
</head>
<body>
  <div class="container">
    <h1>Insulting Unit Converter</h1>
    <p>Convert units... but be prepared for some sass!</p>
    <form id="converter-form">
      <label for="value">Enter Value:</label>
      <input type="number" id="value" placeholder="Enter a number" required>

      <label for="unit">Convert From:</label>
      <select id="unit" required>
        <option value="meters">Meters</option>
        <option value="kilograms">Kilograms</option>
        <option value="celsius">Celsius</option>
      </select>

      <label for="convert-to">Convert To:</label>
      <select id="convert-to" required>
        <option value="feet">Feet</option>
        <option value="pounds">Pounds</option>
        <option value="fahrenheit">Fahrenheit</option>
      </select>

      <button type="button" id="convert-btn">Convert</button>
    </form>
    <div id="result"></div>
  </div>
  <script src="script.js"></script>
</body>
</html>
Editor is loading...
Leave a Comment