Search for a domain Name

Discover, buy and register your unique domain with our domain name search

loading
Please enter your domain.
Please verify that you are not a robot.

TitlyUrls Part of WesCreation

Try Our Free Tools

Custom Url Shortener

Create short links as you need without any limits. Our service allows you to generate unlimited URLs ensuring seamless link.

Fancy Font Generator

Transform your text with our Free Fancy Font Generator! Easily create stylish, aesthetic, and unique fonts for social media, blogs, and more.

Fancy Qr Code Generator

Create stylish and customizable QR codes instantly with our Free Fancy QR Code Generator! Add a unique touch to your links, text & more

Domain Checker

Check domain name availability instantly with our Free Domain Checker Tool! Quickly find the perfect domain for your website.

Best Online Code Editor

Experience seamless coding with the Best Online Code Editor! Write, edit, and preview your code in real time. Featuring auto-save.

Upload Image Get Direct Link

A lightweight, user-friendly tool that lets you upload images and instantly generate direct download links. Perfect for bloggers, forum users

File Transfer

File Transfer lets you quickly upload files from your computer and access them on your mobile via a unique download link or QR code — no login or third-party service required.

More Tools Available Soon

\n'; var baseFontSize = 14; var textarea = editorContainer.find('.code-editor-textarea'); var iframe = editorContainer.find('.code-preview-iframe'); var editorInstance = null;// Initialize CodeMirror if (typeof CodeMirror !== 'undefined') { editorInstance = CodeMirror.fromTextArea(textarea[0], { mode: "htmlmixed", lineNumbers: true, lineWrapping: true, extraKeys: { "Ctrl-Space": "autocomplete", "Ctrl-F": function(cm) { cm.execCommand("find"); }, "Ctrl-=": function(cm) { zoomIn(); }, "Ctrl--": function(cm) { zoomOut(); }, "/": function(cm) { var cursor = cm.getCursor(); var token = cm.getTokenAt(cursor); if (token.string === "/") { var line = cm.getLine(cursor.line); var prevChar = line.charAt(cursor.ch - 2); if (prevChar === "<") { cm.closeTag(); } else { cm.replaceSelection("/"); } } else { cm.replaceSelection("/"); } } }, hintOptions: { completeSingle: false, hintValues: { html: CodeMirror.htmlHint, css: CodeMirror.cssHint, javascript: CodeMirror.javascriptHint } }, autoCloseTags: true, matchTags: {bothTags: true}, autoCloseBrackets: true, highlightSelectionMatches: true });// Set initial content var savedCode = localStorage.getItem("savedCode"); editorInstance.setValue(savedCode ? savedCode : defaultHTML); editorInstance.setSize(null, 1200); editorInstance.getWrapperElement().style.fontSize = baseFontSize + 'px';// Zoom functionality function zoomIn() { baseFontSize += 1; editorInstance.getWrapperElement().style.fontSize = baseFontSize + 'px'; }function zoomOut() { if (baseFontSize > 10) { baseFontSize -= 1; editorInstance.getWrapperElement().style.fontSize = baseFontSize + 'px'; } }// Button handlers editorContainer.find('.zoom-in-btn').off('click').on('click', zoomIn); editorContainer.find('.zoom-out-btn').off('click').on('click', zoomOut);// Keyboard shortcuts $(document).on('keydown', function(e) { if ((e.ctrlKey || e.metaKey) && e.key === '=') { e.preventDefault(); zoomIn(); } if ((e.ctrlKey || e.metaKey) && e.key === '-') { e.preventDefault(); zoomOut(); } });// Auto-complete trigger editorInstance.on('inputRead', function(cm, input) { if (input.text && input.text[0].length > 0 && (input.text[0] === '<' || input.text[0] === '/' || input.text[0] === ' ' || input.text[0] === '.' || input.text[0] === '#' || input.text[0] === '(')) { cm.showHint({completeSingle: false}); } });// Real-time preview with debounce var timeout; editorInstance.on('change', function() { clearTimeout(timeout); timeout = setTimeout(updatePreview, 100); });editorContainer.find('.clear-code-btn').off('click').on('click', function() { editorInstance.setValue(defaultHTML); updatePreview(); });editorContainer.find('.save-code-btn').off('click').on('click', function() { localStorage.setItem("savedCode", editorInstance.getValue()); alert("Code saved!"); }); }function updatePreview() { if (!editorInstance) return; var code = editorInstance.getValue(); var iframeDoc = iframe[0].contentDocument || iframe[0].contentWindow.document; iframeDoc.open(); iframeDoc.write(code); iframeDoc.close(); }// Initial preview updatePreview(); }// Initialize on document ready and Elementor preview refresh $(document).on('ready code_editor_loaded', function() { $('.wp-code-editor-elementor').each(function() { if (!$(this).data('initialized')) { initCodeEditor($(this)); $(this).data('initialized', true); } }); });// For Elementor editor compatibility if (typeof elementor !== 'undefined') { elementor.hooks.addAction('panel/open_editor/widget', function() { setTimeout(function() { $('.wp-code-editor-elementor').each(function() { if (!$(this).data('initialized')) { initCodeEditor($(this)); $(this).data('initialized', true); } }); }, 300); }); } })(jQuery);