For schools, union locals and contractors
Embed our tools on your site
Every calculator on this site can run inside a page on yours. One line of HTML, no ads, no tracking, no account, no cost.
- Tools available
- 40
- Cost
- Free
- Ads in embeds
- None
Why we give these away
A wire-size calculator is more useful sitting next to an apprenticeship application than it is on our site. If you run a training program, a union local, a community college trade department or a contracting business, the tool belongs where your readers already are.
We get something from it too, and it is worth being plain about what: people who use a tool on your site sometimes come looking for the rest of them. That is the entire arrangement. There is no data exchange, no lead sharing, and nothing we collect from your visitors.
Pick a tool and copy the snippet
Ohm's Law Calculator
Live preview
Making the frame resize itself
Calculators change height as people use them, so a fixed-height iframe either clips the answer or leaves white space beneath it. The embed posts its height to your page whenever it changes. Add this once, anywhere on the page, and every embed on it will size itself:
<script>
window.addEventListener("message", function (e) {
if (!e.data || e.data.type !== "ttp:embed:height") return;
document.querySelectorAll('iframe[src*="truetradepath.com/embed/"]').forEach(function (f) {
if (f.contentWindow === e.source) f.style.height = e.data.height + "px";
});
});
</script>It checks the message type and matches the frame by its own content window, so another script on the page cannot resize our embed by posting a lookalike message.
Content Security Policy
frame-src truetradepath.com — or child-src on older policies. Nothing else: the embed loads no fonts, scripts or images from anywhere else.Common questions
What does it cost?
Do the embeds show ads?
Do you track our visitors?
Is attribution required?
Will the calculation change without warning?
Can we self-host it instead?
Something you need that is not here? Email hello@truetradepath.com. If you are also running a training program or an apprenticeship, listing it here is free as well.