75f96181ae2c8cfa6b2e719cf35c5c4d 75f96181ae2c8cfa6b2e719cf35c5c4d veeceebp

https://augustpinch.com/qnd7d2fhd?key=ed5dbed8ecdd9af92e2b54e652945382

8

Thursday, April 16, 2026

HEX TO DECIMAL CONVERTER TOOL

 <!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8">

  <meta name="viewport" content="width=device-width, initial-scale=1.0">

  <title>Hex to Decimal Converter</title>

  <style>

    body {

      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

      background: #0f172a;

      color: #e2e8f0;

      display: flex;

      justify-content: center;

      align-items: center;

      min-height: 100vh;

      margin: 0;

      padding: 20px;

    }

    .container {

      background: #1e293b;

      padding: 32px;

      border-radius: 16px;

      box-shadow: 0 8px 32px rgba(0,0,0,0.4);

      width: 100%;

      max-width: 420px;

    }

    h1 {

      margin: 0 0 24px;

      font-size: 24px;

      text-align: center;

      color: #38bdf8;

    }

    label {

      display: block;

      margin-bottom: 8px;

      font-weight: 600;

      color: #94a3b8;

    }

    input {

      width: 100%;

      padding: 12px;

      border: 2px solid #334155;

      border-radius: 8px;

      background: #0f172a;

      color: #f1f5f9;

      font-size: 16px;

      margin-bottom: 16px;

      box-sizing: border-box;

    }

    input:focus {

      outline: none;

      border-color: #38bdf8;

    }

    .output {

      background: #0f172a;

      padding: 12px;

      border-radius: 8px;

      font-size: 18px;

      min-height: 24px;

      word-break: break-all;

      border: 2px solid #334155;

    }

    .error {

      color: #f87171;

      font-size: 14px;

      margin-top: 8px;

      height: 20px;

    }

  </style>

</head>

<body>

  <div class="container">

    <h1>Hex → Decimal</h1>

    <label for="hexInput">Hex Value</label>

    <input type="text" id="hexInput" placeholder="e.g. FF, 1A3F, 0x2B" autocomplete="off">

    <label>Decimal Result</label>

    <div class="output" id="decOutput">0</div>

    <div class="error" id="error"></div>

  </div>


  <script>

    const hexInput = document.getElementById('hexInput');

    const decOutput = document.getElementById('decOutput');

    const error = document.getElementById('error');


    hexInput.addEventListener

Wednesday, April 8, 2026

JSON VIEWER TOOL

 <!DOCTYPE html>

<html>

<head>

  <title>JSON Viewer</title>

  <style>

    body {

      font-family: monospace;

    }

  </style>

</head>

<body>

  <textarea id="json-input" placeholder="Paste JSON here"></textarea>

  <button onclick="viewJSON()">View JSON</button>

  <pre id="json-output"></pre>


  <script>

    function viewJSON() {

      const jsonInput = document.getElementById('json-input').value;

      try {

        const jsonData = JSON.parse(jsonInput);

        document.getElementById('json-output').innerText = JSON.stringify(jsonData, null, 2);

      } catch (error) {

        document.getElementById


Friday, April 3, 2026

HEX TO TEXT CONVERTER TOOL

 <!DOCTYPE html>

<html>

<body>

  <h2>Hex to Text Converter</h2>

  <input id="hexInput" type="text" placeholder="Enter hex code">

  <button onclick="convertHex()">Convert</button>

  <p id="result"></p>


  <script>

    function convertHex() {

      let hex = document.getElementById("hexInput").value;

      let text = '';

      for (let i = 0; i < hex.length; i += 2) {

        text += String.fromCharCode(parseInt(hex.substring(i, i+2), 16));

      }

      document.getElementById("result").innerText = text;

    }

  </script>

</body>

</html>


Friday, March 27, 2026

FAKE NAME GENERATOR TOOL

 <!DOCTYPE html>

<html>

<body>

  <h2>Fake Name Generator</h2>

  <button onclick="generateName()">Generate Name</button>

  <p id="name"></p>


  <script>

    const firstNames = ["Ava", "Ethan", "Lia", "Noah", "Zara"];

    const lastNames = ["Patel", "Sharma", "Singh", "Kumar", "Gupta"];


    function generateName() {

      const firstName = firstNames[Math.floor(Math.random() * firstNames.length)];

      const lastName = lastNames[Math.floor(Math.random() * lastNames.length)];

      document.getElementById("name").innerHTML = `${firstName} ${lastName}`;

    }

  </script>

</body>

</html>


Monday, March 23, 2026

OCTAL TO DECIMAL CONVERTER TOOL

 <!DOCTYPE html>

<html>

<head>

  <title>Octal to Decimal Converter</title>

</head>

<body>

  <h1>Octal to Decimal Converter</h1>

  <input id="octal-input" type="number" placeholder="Enter octal number">

  <button onclick="convertOctalToDecimal()">Convert</button>

  <input id="decimal-output" type="number" readonly>


  <script>

    function convertOctalToDecimal() {

      const octalInput = document.getElementById('octal-input').value;

      const decimalOutput = document.getElementById('decimal-output');

      decimalOutput.value = parseInt(octalInput, 8);

    }

  </script>

</body>

</html>


Monday, March 16, 2026

SITE PROMPT GENERATOR TOOL

 <!DOCTYPE html>

<html>

<head>

  <title>Site Prompt Generator</title>

</head>

<body>

  <h1>Site Prompt Generator</h1>

  <textarea id="topic-input" placeholder="Enter topic or keyword"></textarea>

  <button onclick="generatePrompt()">Generate Prompt</button>

  <p id="prompt-output"></p>


  <script>

    function generatePrompt() {

      let topic = document.getElementById('topic-input').value;

      let prompts = [

        `Design a website for ${topic}`,

        `Create a landing page for ${topic}`,

        `Develop an e-commerce site for ${topic}`,

        `Build a blog about ${topic}`,


Friday, March 6, 2026

OCTAL TO TEXT CONVERTER TOOL

 <!DOCTYPE html>

<html>

<head>

  <title>Octal to Text Converter</title>

</head>

<body>

  <h1>Octal to Text Converter</h1>

  <textarea id="octal-input" placeholder="Enter octal code"></textarea>

  <button onclick="convertOctalToText()">Convert</button>

  <p id="text-output"></p>


  <script>

    function convertOctalToText() {

      const octalInput = document.getElementById('octal-input').value;

      const textOutput = document.getElementById('text-output');

      const octalArray = octalInput.split(' ');

      let text = '';


      for (let i = 0; i < octalArray.length; i++) {

        text += String.fromCharCode(parseInt(octalArray[i], 8));

      }


      textOutput.innerText = text;

    }

  </script>

</body>

</html>


HEX TO DECIMAL CONVERTER TOOL

 <!DOCTYPE html> <html lang="en"> <head>   <meta charset="UTF-8">   <meta name="viewport...