Calculator Tools Calculator Tools
Create

DTF Print & Press - Custom Print Cost Estimator

Aug 9, 2025

About this app

Calculate your print costs with DTF Print & Press V26. Enter your project details and get instant pricing!

DTF Print & Press - Custom Print Cost Estimator DTF Print & Press V26 Powered by SeaSide Silk Screening Reset All Fields Name/PO Number: Quantity: Qty Price Breaks: 24, 36, 48, 72, 144, 288 Product Type: T-Shirt ($0) Polo ($1) Fleece ($2) Cap ($3) Print Location 1: N/A ($0) Left Front Chest ($1) Right Front Chest ($1) Full Front ($2) Full Back ($2) Print Location 2: N/A ($0) Left Front Chest ($1) Right Front Chest ($1) Full Front ($2) Full Back ($2) Print Location 3: N/A ($0) Left Front Chest ($1) Right Front Chest ($1) Full Front ($2) Full Back ($2) Print Location 4: N/A ($0) Left Front Chest ($1) Right Front Chest ($1) Full Front ($2) Full Back ($2) Total Cost: $0.00

Related apps

Put this on your site

Source

                    <html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">

<title>DTF Print & Press - Custom Print Cost Estimator</title>
<meta name="description" content="Calculate your print costs with DTF Print & Press V26. Enter your project details and get instant pricing!">
<meta name="keywords" content="DTF Print, Print Cost Estimator, Custom Apparel, SeaSide Silk Screening">

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.min.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.6.0/css/fontawesome.min.css" crossorigin="anonymous">

<script type="text/javascript">
try {
document.addEventListener("DOMContentLoaded", function() {
const resetButton = document.getElementById("reset-button");
const quantityInput = document.getElementById("quantity");
const nameInput = document.getElementById("name");
const productType = document.getElementById("product-type");
const printLoc1 = document.getElementById("print-loc-1");
const printLoc2 = document.getElementById("print-loc-2");
const printLoc3 = document.getElementById("print-loc-3");
const printLoc4 = document.getElementById("print-loc-4");

resetButton.addEventListener("click", () => {
nameInput.value = "";
quantityInput.value = 0;
productType.selectedIndex = 0;
printLoc1.selectedIndex = 0;
printLoc2.selectedIndex = 0;
printLoc3.selectedIndex = 0;
printLoc4.selectedIndex = 0;
updateCost();
});

quantityInput.addEventListener("input", updateCost);
productType.addEventListener("change", updateCost);
const printLocations = [printLoc1, printLoc2, printLoc3, printLoc4];
printLocations.forEach(loc => loc.addEventListener("change", updateCost));

function updateCost() {
const quantity = Math.max(0, parseInt(quantityInput.value) || 0);
const productPrices = [0, 1, 2, 3];
const locationPrices = [0, 1, 1, 2, 2];

const productPrice = productPrices[productType.selectedIndex];
const totalPrintLocCost = printLocations.reduce((total, loc) => total + locationPrices[loc.selectedIndex], 0);
const receivingCost = 0.16 * quantity;

const totalCost = (productPrice + totalPrintLocCost + receivingCost) * quantity;

document.getElementById("total-cost").textContent = "$" + totalCost.toFixed(2);
}
});
} catch (error) {
throw error;
}
</script>

<style>
body {
background-color: #f2f9ff;
font-family: 'Arial', sans-serif;
}
#main-container {
background: linear-gradient(to right, #a2c2e5, #ebf8ff);
padding: 30px;
border-radius: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
h1 {
color: #333;
}
.reset-button {
position: absolute;
right: 20px;
top: 10px;
}
label {
font-weight: bold;
}
button {
background-color: #5cb85c;
color: white;
border: none;
padding: 10px 20px;
border-radius: 12px;
}
button:hover {
background-color: #4cae4c;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h1 class="text-center">DTF Print & Press V26</h1>
<p class="text-center">Powered by SeaSide Silk Screening</p>
<button id="reset-button" class="reset-button btn">Reset All Fields</button>

<div class="form-group">
<label for="name">Name/PO Number:</label>
<input type="text" id="name" class="form-control">
</div>

<div class="form-group">
<label for="quantity">Quantity:</label>
<input type="range" id="quantity" class="form-range" min="0" value="0">
<small>Qty Price Breaks: 24, 36, 48, 72, 144, 288</small>
</div>

<div class="form-group">
<label for="product-type">Product Type:</label>
<select id="product-type" class="form-select">
<option value="0">T-Shirt ($0)</option>
<option value="1">Polo ($1)</option>
<option value="2">Fleece ($2)</option>
<option value="3">Cap ($3)</option>
</select>
</div>

<div class="form-group">
<label for="print-loc-1">Print Location 1:</label>
<select id="print-loc-1" class="form-select">
<option value="0">N/A ($0)</option>
<option value="1">Left Front Chest ($1)</option>
<option value="1">Right Front Chest ($1)</option>
<option value="2">Full Front ($2)</option>
<option value="2">Full Back ($2)</option>
</select>
</div>

<div class="form-group">
<label for="print-loc-2">Print Location 2:</label>
<select id="print-loc-2" class="form-select">
<option value="0">N/A ($0)</option>
<option value="1">Left Front Chest ($1)</option>
<option value="1">Right Front Chest ($1)</option>
<option value="2">Full Front ($2)</option>
<option value="2">Full Back ($2)</option>
</select>
</div>

<div class="form-group">
<label for="print-loc-3">Print Location 3:</label>
<select id="print-loc-3" class="form-select">
<option value="0">N/A ($0)</option>
<option value="1">Left Front Chest ($1)</option>
<option value="1">Right Front Chest ($1)</option>
<option value="2">Full Front ($2)</option>
<option value="2">Full Back ($2)</option>
</select>
</div>

<div class="form-group">
<label for="print-loc-4">Print Location 4:</label>
<select id="print-loc-4" class="form-select">
<option value="0">N/A ($0)</option>
<option value="1">Left Front Chest ($1)</option>
<option value="1">Right Front Chest ($1)</option>
<option value="2">Full Front ($2)</option>
<option value="2">Full Back ($2)</option>
</select>
</div>

<h2>Total Cost: <span id="total-cost">$0.00</span></h2>
</div>
</body>
</html>