Post Top Ad

Post Top Ad

Responsive Ads Here

الجمعة، 9 مايو 2025

I will update the existing single-page app with an option for user to upload an image. This image will be used inside the shape instead of text if provided. The user can switch between text mode and image mode. Plan: - Add a toggle control to choose between "Text" or "Image" mode. - Add a file input for the image upload when image mode is selected. - When image is uploaded, display the image clipped inside the selected shape. - If no image is uploaded or "Text" mode is selected, show the text as before. - Keep the rest of functionality (shape selection, text input) intact. - Keep UI responsive and simple with this new control. - On switching mode, clear the other input if needed. - On download, export displayed SVG (text or image clipped in shape) to PNG as before. I'll proceed to add these features to the current HTML file with inline CSS and JS. The app remains a single file with all logic included. `text-to-shape-converter.html` ```html Text to Shape Converter<style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); * { box-sizing: border-box; } body { margin: 0; background: #121212; color: #eee; font-family: 'Poppins', sans-serif; display: flex; flex-direction: column; align-items: center; min-height: 100vh; padding: 10px; } h1 { font-weight: 600; margin-bottom: 10px; font-size: 1.8rem; text-align: center; color: #ff6f61; } .container { max-width: 350px; width: 100%; display: flex; flex-direction: column; gap: 10px; } textarea, input[type="text"] { width: 100%; padding: 12px 14px; font-size: 1rem; border-radius: 8px; border: none; outline: none; resize: none; font-weight: 600; background-color: #222; color: #eee; } label { font-weight: 600; margin-bottom: 6px; } /* Shape selector styles */ .shape-selector { max-height: 200px; overflow-y: auto; background-color: #222; border-radius: 10px; padding: 8px; display: grid; grid-template-columns: repeat(auto-fill,minmax(60px,1fr)); gap: 10px; } .shape-item { background: #333; border-radius: 10px; border: 2px solid transparent; cursor: pointer; display:flex; flex-direction: column; align-items: center; justify-content: center; padding: 6px 0; font-size: 10px; color: #bbb; transition: border-color 0.3s, background-color 0.3s; user-select:none; } .shape-item svg { width: 40px; height: 40px; fill: #ff6f61; margin-bottom: 3px; } .shape-item.selected { border-color: #ff6f61; background-color: #441b17; color: #ff9f93; } /* Display area */ .display-area { background: #222; border-radius: 12px; padding: 12px; display: flex; justify-content: center; align-items: center; min-height: 320px; position: relative; } svg { width: 100%; height: auto; max-height: 320px; } /* Download button */ button.download-btn { margin-top: 12px; background-color: #ff6f61; border: none; color: white; font-weight: 600; padding: 12px 0; border-radius: 8px; cursor: pointer; width: 100%; font-size: 1.1rem; transition: background-color 0.3s; } button.download-btn:hover { background-color: #e6554b; } /* Mode selector styles */ .mode-selector { display: flex; justify-content: center; gap: 20px; margin-bottom: 10px; } .mode-selector label { cursor: pointer; user-select:none; font-weight: 600; color: #eee; } .mode-selector input[type="radio"] { margin-right: 6px; cursor: pointer; } /* Image upload file input */ #imageInput { display: none; } label[for="imageInput"] { background-color: #ff6f61; border-radius: 8px; padding: 10px 0; text-align: center; font-weight: 600; cursor: pointer; color: white; width: 100%; font-size: 1rem; transition: background-color 0.3s; user-select:none; } label[for="imageInput"]:hover { background-color: #e6554b; } /* Mobile optimizations */ @media (max-width: 400px) { .shape-item svg { width: 30px; height: 30px; } .display-area { min-height: 260px; } } <h1>Text to Shape Converter<div class="container" role="main"> <div class="mode-selector" role="radiogroup" aria-label="Select content mode to shape"> <input type="radio" name="mode" value="text" checked> Text</label> <input type="radio" name="mode" value="image"> Image</label> <label for="inputText" id="textInputLabel">Enter Text</label> <textarea id="inputText" rows="3" placeholder="Type your text here..." aria-labelledby="textInputLabel</textarea> <label for="imageInput" id="imageInputLabel" style="display:none;">Upload Image</label> <input type="file" accept="image/*" id="imageInput" aria-labelledby="imageInputLabel" /> <label for="shapeSelector">Select Shape</label> <div class="shape-selector" id="shapeSelector" role="listbox" aria-label="Shape selector<div class="display-area" aria-live="polite" aria-atomic="true" aria-relevant="additions removals" tabindex="0"> <!-- SVG for shape + text or image will render here --> <button class="download-btn" id="downloadBtn" aria-label="Download the shaped content as image">Download Image</button> <script> // Shape definitions: id, name, SVG path data or shape to use for clip-path and text path const shapes = [ { id: 'circle', name: 'Circle', path: 'M150,150 m-140,0 a140,140 0 1,0 280,0 a140,140 0 1,0 -280,0' }, { id: 'ellipse', name: 'Ellipse', path: 'M10,150 a140,70 0 1,0 280,0 a140,70 0 1,0 -280,0' }, { id: 'square', name: 'Square', path: 'M10 10 H290 V290 H10 Z' }, { id: 'roundedSquare', name: 'Rounded Square', path: 'M50,10 h200 a40,40 0 0 1 40,40 v200 a40,40 0 0 1 -40,40 h-200 a40,40 0 0 1 -40,-40 v-200 a40,40 0 0 1 40,-40 z' }, { id: 'triangle', name: 'Triangle', path: 'M150 20 L280 280 L20 280 Z' }, { id: 'star5', name: 'Star 5-point', path: 'M150 20 L179 111 L272 111 L197 165 L223 257 L150 205 L77 257 L103 165 L28 111 L121 111 Z' }, { id: 'heart', name: 'Heart', path: 'M150 270 L50 180 A70 70 0 1 1 150 80 A70 70 0 1 1 250 180 Z' }, { id: 'hexagon', name: 'Hexagon', path: 'M150 10 L270 85 L270 215 L150 290 L30 215 L30 85 Z' }, { id: 'pentagon', name: 'Pentagon', path: 'M150 20 L280 112 L230 265 L70 265 L20 112 Z' }, { id: 'octagon', name: 'Octagon', path: 'M90 10 H210 L280 80 V220 L210 290 H90 L20 220 V80 Z' }, { id: 'cloud', name: 'Cloud', path: 'M70 130 a40 40 0 1 1 60 -60 a30 30 0 1 1 65 65 h-85 z' }, { id: 'wave', name: 'Wave', path: 'M10 150 q50 -80 100 0 t100 0 t100 0' }, { id: 'spiral', name: 'Spiral', path: 'M150 150 m-10,0 a10,10 0 1,1 20,0 a30,30 0 1,0 -60,0 a50,50 0 1,1 100,0 a70,70 0 1,0 -140,0' }, { id: 'star6', name: 'Star 6-point', path: 'M150 20 L190 110 L280 110 L210 170 L240 260 L150 210 L60 260 L90 170 L20 110 L110 110 Z' }, { id: 'diamond', name: 'Diamond', path: 'M150 20 L280 150 L150 280 L20 150 Z' }, { id: 'crescent', name: 'Crescent', path: 'M150 50 a80 80 0 1 0 0 160 a50 80 0 1 1 0 -160 z' }, { id: 'leaf', name: 'Leaf', path: 'M150 20 Q225 110 150 280 Q75 110 150 20 Z' }, { id: 'arrow', name: 'Arrow', path: 'M50 150 L150 50 L150 100 L280 100 L280 200 L150 200 L150 250 Z' }, { id: 'moon', name: 'Moon', path: 'M150 100 a80 80 0 1 0 0 100 a50 50 0 1 1 0 -100 z' }, { id: 'cross', name: 'Cross', path: 'M110 10 H190 V110 H290 V190 H190 V290 H110 V190 H10 V110 H110 Z' }, { id: 'trapezoid', name: 'Trapezoid', path: 'M80 20 L220 20 L280 280 L20 280 Z' }, { id: 'butterfly', name: 'Butterfly', path: 'M150 150 m -30 -60 q 60 30 0 120 q -60 -30 0 -120 z' }, { id: 'kite', name: 'Kite', path: 'M150 20 L260 150 L150 280 L40 150 Z' }, { id: 'flower', name: 'Flower', path: 'M150 150 m -50 0 a50 50 0 1 1 100 0 a50 50 0 1 1 -100 0 Z' }, { id: 'pentagram', name: 'Pentagram', path: 'M150 20 L179 111 L272 111 L197 165 L223 257 L150 205 L77 257 L103 165 L28 111 L121 111 Z' }, { id: 'spiral2', name: 'Spiral 2', path: 'M150 150 m-10,0 a10,10 0 1,1 20,0 a30,30 0 1,0 -60,0 a50,50 0 1,1 100,0 a70,70 0 1,0 -140,0' }, { id: 'cloud2', name: 'Cloud 2', path: 'M80 120 a40 40 0 1 1 60 -60 a30 30 0 1 1 65 65 h-85 z' }, { id: 'shield', name: 'Shield', path: 'M150 10 L280 60 L230 230 L150 280 L70 230 L20 60 Z' }, { id: 'hexagram', name: 'Hexagram', path: 'M150 20 L190 110 L280 110 L210 170 L240 260 L150 210 L60 260 L90 170 L20 110 L110 110 Z' }, { id: 'roundedTriangle', name: 'Rounded Triangle', path: 'M150 30 Q270 150 150 270 Q30 150 150 30 Z' }, { id: 'blob', name: 'Blob', path: 'M100 180 Q130 220 170 200 Q230 160 200 120 Q160 60 120 80 Q90 130 100 180 Z' }, { id: 'bowtie', name: 'Bowtie', path: 'M80 80 L220 220 L220 80 L80 220 Z' }, { id: 'parallelogram', name: 'Parallelogram', path: 'M90 10 L280 10 L210 290 L20 290 Z' }, { id: 'chevron', name: 'Chevron', path: 'M50 10 L150 150 L250 10 L290 50 L150 210 L10 50 Z' }, { id: 'flag', name: 'Flag', path: 'M20 20 L280 60 L250 180 L20 180 Z' }, { id: 'capsule', name: 'Capsule', path: 'M60 20 h180 a40 40 0 0 1 0 240 h-180 a40 40 0 0 1 0 -240 z' }, { id: 'dumbbell', name: 'Dumbbell', path: 'M50 140 H100 a40 40 0 0 1 0 20 H50 a20 20 0 0 0 0 -20 z' }, { id: 'hourglass', name: 'Hourglass', path: 'M80 50 L220 50 L80 250 L220 250 Z' }, { id: 'vortex', name: 'Vortex', path: 'M150 150 m-70,0 a70 70 0 1,1 140,0 a70 70 0 1,1 -140,0' }, { id: 'bottle', name: 'Bottle', path: 'M130 20 h40 v200 h-40 z' }, { id: 'camera', name: 'Camera', path: 'M60 80 h180 v140 h-180 z' }, { id: 'diamond2', name: 'Diamond 2', path: 'M150 10 L270 150 L150 290 L30 150 Z' }, { id: 'drop', name: 'Drop', path: 'M150 50 Q220 150 150 280 Q80 150 150 50 Z' }, { id: 'egg', name: 'Egg', path: 'M150 20 Q220 150 150 280 Q80 150 150 20 Z' }, { id: 'fan', name: 'Fan', path: 'M150 150 m-140,0 a140,140 0 0,1 140,-140' }, { id: 'flag2', name: 'Flag 2', path: 'M20 20 L280 60 L250 180 L20 180 Z' }, { id: 'frame', name: 'Frame', path: 'M50 50 h200 v200 h-200 z' }, { id: 'gamepad', name: 'Gamepad', path: 'M60 80 h180 v140 h-180 z' }, { id: 'gem', name: 'Gem', path: 'M150 10 L270 150 L150 290 L30 150 Z' }, { id: 'gear', name: 'Gear', path: 'M150 150 m-70 0 a70 70 0 1 0 140 0 a70 70 0 1 0 -140 0' }, { id: 'ghost', name: 'Ghost', path: 'M50 80 Q150 10 250 80 v130 Q150 290 50 210 z' }, { id: 'glasses', name: 'Glasses', path: 'M70 140 a40 40 0 1 1 60 -60 a30 30 0 1 1 65 65 h-85 z' }, { id: 'heart2', name: 'Heart 2', path: 'M150 270 L50 180 A70 70 0 1 1 150 80 A70 70 0 1 1 250 180 Z' }, { id: 'hexagon2', name: 'Hexagon 2', path: 'M150 10 L270 85 L270 215 L150 290 L30 215 L30 85 Z' }, { id: 'house', name: 'House', path: 'M50 180 L150 80 L250 180 V280 H50 Z' }, { id: 'lock', name: 'Lock', path: 'M100 80 v50 h-50 v60 h200 v-60 h-50 v-50 a40 40 0 0 0 -100 0 z' }, { id: 'maple', name: 'Maple', path: 'M150 10 L180 150 L100 100 L220 100 L140 150 L180 260 L150 150 L120 260 L160 150 L80 100 L150 100 Z' }, { id: 'mask', name: 'Mask', path: 'M70 110 C100 30 200 30 230 110 Q150 290 70 110 Z' }, { id: 'medal', name: 'Medal', path: 'M150 60 a70 70 0 1 1 -70 70 a70 70 0 1 1 70 -70 z' }, { id: 'mountain', name: 'Mountain', path: 'M20 280 L110 150 L180 210 L250 140 L280 280 Z' }, { id: 'music', name: 'Music', path: 'M100 70 v140 h100 v-140 z' }, { id: 'note', name: 'Note', path: 'M150 20 L190 110 L280 110 L210 170 L240 260 L150 210 L60 260 L90 170 L20 110 L110 110 Z' }, { id: 'octagon2', name: 'Octagon 2', path: 'M90 10 H210 L280 80 V220 L210 290 H90 L20 220 V80 Z' }, { id: 'palette', name: 'Palette', path: 'M150 150 m -100 0 a100 100 0 1 0 200 0 a60 60 0 1 0 -120 60 a20 20 0 1 1 -80 -60z' }, { id: 'paw', name: 'Paw', path: 'M100 150 a20 30 0 1 1 35 -35 a20 30 0 1 1 35 35 z' }, { id: 'phone', name: 'Phone', path: 'M100 50 v200 h100 v-200 z' }, { id: 'pin', name: 'Pin', path: 'M150 20 Q230 150 150 280 Q70 150 150 20 Z' }, { id: 'plant', name: 'Plant', path: 'M140 120 L190 200 L125 190 Z' }, { id: 'polygon12', name: '12-Sided Polygon', path: 'M150 10 L210 30 L260 80 L280 140 L260 200 L210 250 L150 270 L90 250 L40 200 L20 140 L40 80 L90 30 Z' }, { id: 'rectangle', name: 'Rectangle', path: 'M10 100 H290 V200 H10 Z' }, { id: 'ribbon', name: 'Ribbon', path: 'M50 50 L250 250 L50 250 Z' }, { id: 'rocket', name: 'Rocket', path: 'M150 10 L230 150 L150 290 L70 150 Z' }, { id: 'roundedHexagon', name: 'Rounded Hexagon', path: 'M150 10 Q280 90 280 210 Q150 290 20 210 Q20 90 150 10 Z' }, { id: 'shield2', name: 'Shield 2', path: 'M150 10 L280 60 L230 230 L150 280 L70 230 L20 60 Z' }, { id: 'smiley', name: 'Smiley', path: 'M150 150 m-120,0 a120 120 0 1 0 240 0 a120 120 0 1 0 -240 0' }, { id: 'snowflake', name: 'Snowflake', path: 'M150 20 L170 280 M110 100 L190 200 M190 100 L110 200' }, { id: 'speech', name: 'Speech Bubble', path: 'M20 120 a100 100 0 1 1 180 50 l50 50 v-130 z' }, { id: 'star4', name: 'Star 4-point', path: 'M150 20 L210 140 L290 140 L230 210 L260 280 L150 230 L40 280 L70 210 L10 140 L90 140 Z' }, { id: 'sun', name: 'Sun', path: 'M150 150 m-80 0 a80 80 0 1 0 160 0 a80 80 0 1 0 -160 0' }, { id: 'teardrop', name: 'Teardrop', path: 'M150 20 Q220 100 150 280 Q80 100 150 20 Z' }, { id: 'triangle2', name: 'Triangle 2', path: 'M150 20 L280 280 L20 280 Z' }, { id: 'umbrella', name: 'Umbrella', path: 'M20 150 Q150 20 280 150 Q230 150 230 280 h-160 Q70 150 20 150 Z' }, { id: 'wave2', name: 'Wave 2', path: 'M10 150 q50 -80 100 0 t100 0 t100 0' }, { id: 'wedge', name: 'Wedge', path: 'M150 20 L280 280 L20 280 Z' }, { id: 'witchHat', name: 'Witch Hat', path: 'M50 220 L150 20 L250 220 Z' } ]; // Prepare variables const shapeSelector = document.getElementById('shapeSelector'); const inputText = document.getElementById('inputText'); const displayArea = document.querySelector('.display-area'); const downloadBtn = document.getElementById('downloadBtn'); const modeRadios = document.querySelectorAll('input[name="mode"]'); const imageInput = document.getElementById('imageInput'); const imageInputLabel = document.getElementById('imageInputLabel'); const textInputLabel = document.getElementById('textInputLabel'); // Vars to hold state let selectedShapeId = null; let currentMode = 'text'; // 'text' or 'image' let uploadedImageDataUrl = null; // Generate unique id for SVG elements function uniqueId() { return 'id-' + Math.random().toString(36).substr(2, 9); } // Render shapes in selector function renderShapeSelector() { shapes.forEach((shape) => { const item = document.createElement('div'); item.classList.add('shape-item'); item.setAttribute('role', 'option'); item.setAttribute('tabindex', '0'); item.setAttribute('aria-selected', 'false'); item.dataset.id = shape.id; // Create SVG preview const svg = document.createElementNS("http://www.w3.org/2000/svg", "svg"); svg.setAttribute('viewBox', '0 0 300 300'); svg.setAttribute('aria-hidden', 'true'); const path = document.createElementNS("http://www.w3.org/2000/svg", "path"); path.setAttribute('d', shape.path); svg.appendChild(path); item.appendChild(svg); const label = document.createElement('div'); label.textContent = shape.name; item.appendChild(label); shapeSelector.appendChild(item); // Click & keyboard interaction item.addEventListener('click', () => { setSelectedShape(shape.id); }); item.addEventListener('keydown', (e) => { if(e.key === 'Enter' || e.key === ' ') { e.preventDefault(); setSelectedShape(shape.id); } }); }); } // Set selected shape visually and re-render function setSelectedShape(shapeId) { selectedShapeId = shapeId; [...shapeSelector.children].forEach(item => { if(item.dataset.id === shapeId) { item.classList.add('selected'); item.setAttribute('aria-selected', 'true'); item.scrollIntoView({ behavior: 'smooth', block: 'nearest', inline:'nearest' }); } else { item.classList.remove('selected'); item.setAttribute('aria-selected', 'false'); } }); renderShapeWithContent(); } // Render the SVG with shape and text or image fitted inside function renderShapeWithContent() { if (!selectedShapeId) { displayArea.innerHTML =<p style="color:#ff6f61; font-weight:600; text-align:center;">Please select a shape to display the content</p>'; return; } const shape = shapes.find(s => s.id === selectedShapeId); if (!shape) return; // Clear display area displayArea.innerHTML = ''; // Create SVG container const svgNS = "http://www.w3.org/2000/svg"; const svg = document.createElementNS(svgNS, 'svg'); svg.setAttribute('viewBox', '0 0 300 300'); svg.setAttribute('role', 'img'); svg.setAttribute('aria-label', `Content shaped into ${shape.name}`); // Create defs for clip path const defs = document.createElementNS(svgNS, 'defs'); const clipPath = document.createElementNS(svgNS, 'clipPath'); const clipId = uniqueId(); clipPath.setAttribute('id', clipId); const clipPathShape = document.createElementNS(svgNS, 'path'); clipPathShape.setAttribute('d', shape.path); clipPath.appendChild(clipPathShape); defs.appendChild(clipPath); svg.appendChild(defs); // Draw faint shape border const shapeFill = document.createElementNS(svgNS, 'path'); shapeFill.setAttribute('d', shape.path); shapeFill.setAttribute('fill', 'none'); shapeFill.setAttribute('stroke', '#ff6f61'); shapeFill.setAttribute('stroke-width', '3'); shapeFill.setAttribute('opacity', '0.3'); svg.appendChild(shapeFill); if(currentMode === 'text') { // Text mode let text = inputText.value.trim() || "Sample Text"; const group = document.createElementNS(svgNS, 'g'); group.setAttribute('clip-path', `url(#${clipId})`); const fontSize = 18; const padding = 8; const lineHeight = fontSize * 1.4; const maxWidth = 300 - padding * 2; const maxHeight = 300 - padding * 2; const linesCount = Math.floor(maxHeight / lineHeight); const repeatCount = 10; for(let i=0; i<linesCount; i++) { const textLine = document.createElementNS(svgNS, 'text'); textLine.setAttribute('x', padding); textLine.setAttribute('y', padding + lineHeight * (i+1) - 6); textLine.setAttribute('font-family', 'Poppins, sans-serif'); textLine.setAttribute('font-weight', '600'); textLine.setAttribute('font-size', fontSize); textLine.setAttribute('fill', '#ff9f93'); let lineText = ''; for(let j=0; j<repeatCount; j++) { lineText += text + ' '; } textLine.textContent = lineText; group.appendChild(textLine); } svg.appendChild(group); } else if (currentMode === 'image') { // Image mode if (!uploadedImageDataUrl) { // Show instruction const msg = document.createElementNS(svgNS, 'text'); msg.setAttribute('x', '50%'); msg.setAttribute('y', '50%'); msg.setAttribute('text-anchor', 'middle'); msg.setAttribute('dominant-baseline', 'middle'); msg.setAttribute('font-family', 'Poppins, sans-serif'); msg.setAttribute('font-size', '14'); msg.setAttribute('fill', '#ff6f61'); msg.textContent = 'Upload an image above'; svg.appendChild(msg); } else { // Draw image clipped by shape (fit to viewBox 0 0 300 300) const img = document.createElementNS(svgNS, 'image'); img.setAttribute('href', uploadedImageDataUrl); img.setAttribute('x', 0); img.setAttribute('y', 0); img.setAttribute('width', 300); img.setAttribute('height', 300); img.setAttribute('clip-path', `url(#${clipId})`); img.setAttribute('preserveAspectRatio', 'xMidYMid slice'); svg.appendChild(img); } } displayArea.appendChild(svg); } // Handle mode change modeRadios.forEach(radio => { radio.addEventListener('change', () => { currentMode = document.querySelector('input[name="mode"]:checked').value; if(currentMode === 'text') { imageInput.style.display = 'none'; imageInputLabel.style.display = 'none'; inputText.style.display = 'block'; textInputLabel.style.display = 'block'; // Clear uploaded image data uploadedImageDataUrl = null; imageInput.value = null; } else { imageInput.style.display = 'block'; imageInputLabel.style.display = 'block'; inputText.style.display = 'none'; textInputLabel.style.display = 'none'; } renderShapeWithContent(); }); }); // Handle image upload imageInput.addEventListener('change', () => { const file = imageInput.files[0]; if(!file) { uploadedImageDataUrl = null; renderShapeWithContent(); return; } // Validate image file size (optional) and format const validTypes = ['image/jpeg', 'image/png', 'image/gif', 'image/webp', 'image/svg+xml']; if(!validTypes.includes(file.type)) { alert('Unsupported image format. Please upload JPG, PNG, GIF, WEBP, or SVG image.'); imageInput.value = null; uploadedImageDataUrl = null; renderShapeWithContent(); return; } const reader = new FileReader(); reader.onload = function(e) { uploadedImageDataUrl = e.target.result; renderShapeWithContent(); }; reader.readAsDataURL(file); }); // Event listeners for text input & shape selector call to re-render inputText.addEventListener('input', renderShapeWithContent); // Download as PNG image function downloadImage() { if (!selectedShapeId) { alert('Please select a shape to download the image.'); return; } const svg = displayArea.querySelector('svg'); if (!svg) return; // Serialize SVG and convert to image const serializer = new XMLSerializer(); const svgString = serializer.serializeToString(svg); const img = new Image(); const svgBlob = new Blob([svgString], {type: 'image/svg+xml;charset=utf-8'}); const url = URL.createObjectURL(svgBlob); img.onload = function() { // Create canvas const canvas = document.createElement('canvas'); canvas.width = 600; canvas.height = 600; const ctx = canvas.getContext('2d'); // Fill background black transparent ctx.fillStyle = '#121212'; ctx.fillRect(0, 0, canvas.width, canvas.height); // Draw svg img scaled to canvas ctx.drawImage(img, 0, 0, canvas.width, canvas.height); URL.revokeObjectURL(url); // Convert canvas to PNG data URL and download canvas.toBlob((blob) => { const link = document.createElement('a'); link.href = URL.createObjectURL(blob); link.download = 'text_shape.png'; document.body.appendChild(link); link.click(); link.remove(); }, 'image/png'); } img.src = url; } downloadBtn.addEventListener('click', downloadImage); // Initialize app renderShapeSelector(); if(shapes.length > 0) setSelectedShape(shapes[0].id); </script> ``` </div> </article> <div class='post-footer'> <div class='share-box'> <h8 class='share-title'>Share This:</h8> <div class='social-btns'> <a class='btn facebook' href='http://www.facebook.com/sharer.php?u=https://10randomz.blogspot.com/2025/05/i-will-update-existing-single-page-app.html?hl=ar&title=' onclick='window.open(this.href, 'windowName', 'width=600, height=400, left=24, top=24, scrollbars, resizable'); return false;' rel='nofollow' target='_blank'><i class='fa fa-facebook'></i></a> <a class='btn twitter' href='http://twitter.com/share?url=https://10randomz.blogspot.com/2025/05/i-will-update-existing-single-page-app.html?hl=ar&title=' onclick='window.open(this.href, 'windowName', 'width=600, height=400, left=24, top=24, scrollbars, resizable'); return false;' rel='nofollow' target='_blank'><i class='fa fa-twitter'></i></a> <a class='btn google' href='https://plus.google.com/share?url=https://10randomz.blogspot.com/2025/05/i-will-update-existing-single-page-app.html?hl=ar&title=' onclick='window.open(this.href, 'windowName', 'width=600, height=400, left=24, top=24, scrollbars, resizable'); return false;' rel='nofollow' target='_blank'><i class='fa fa-google'></i></a> <a class='btn dribbble' href='http://pinterest.com/pin/create/button/?url=https://10randomz.blogspot.com/2025/05/i-will-update-existing-single-page-app.html?hl=ar&media=&description=I will update the existing single-page app with an option for user to upload an image. This image will be used inside the shape instead of t...' onclick='window.open(this.href, 'windowName', 'width=600, height=400, left=24, top=24, scrollbars, resizable'); return false;' rel='nofollow' target='_blank'><i class='fa fa-pinterest'></i></a> <a class='btn skype' href='http://www.linkedin.com/shareArticle?url=https://10randomz.blogspot.com/2025/05/i-will-update-existing-single-page-app.html?hl=ar&title=' onclick='window.open(this.href, 'windowName', 'width=600, height=400, left=24, top=24, scrollbars, resizable'); return false;' rel='nofollow' target='_blank'><i class='fa fa-linkedin'></i></a> </div> </div> <div style='clear:both'></div> <div class='ty-author-box'> <img alt='Author Image' class='avatar avatar-60 photo' height='100' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgxT8f2r-2tFjnqcQrbWC5BptNt3xLL6RMekIGe42zlL1tbaM8fMOSdLga0_xBSCgUBCQf70RbXghqUYaOPAsNUeuB00VoOBD8ytnPOUMcMJ96Dv6kaPnPBlML8-ubKmjY/s150/Black-Wings-PNG-Picture.png' width='110'/> <p> <b>About Admin</b> <br/> <span name='author-post'></span> </p> </div> <div style='clear:both'></div> <div id='related-posts'> <script type='text/javascript'> var currentposturl="https://10randomz.blogspot.com/2025/05/i-will-update-existing-single-page-app.html?hl=ar"; var maxresults=3; var relatedpoststitle="<b>You May Also Like:</b>"; removeRelatedDuplicates_thumbs(); printRelatedLabels_thumbs(); </script> </div> <div style='clear:both'></div> <div class='post-footer-line post-footer-line-1'> <span class='post-author vcard'> </span> <span class='post-timestamp'> في <meta content='https://10randomz.blogspot.com/2025/05/i-will-update-existing-single-page-app.html' itemprop='url'/> <a class='timestamp-link' href='https://10randomz.blogspot.com/2025/05/i-will-update-existing-single-page-app.html?hl=ar' rel='bookmark' title='permanent link'><abbr class='published' itemprop='datePublished' title='2025-05-09T14:31:00-07:00'>مايو 09, 2025</abbr></a> </span> <span class='reaction-buttons'> </span> <span class='post-comment-link'> </span> <span class='post-backlinks post-comment-link'> </span> <span class='post-icons'> </span> <div class='post-share-buttons goog-inline-block'> <a class='goog-inline-block share-button sb-email' href='https://www.blogger.com/share-post.g?blogID=572294485534474482&postID=6269550028740384409&target=email' target='_blank' title='إرسال بالبريد الإلكتروني'><span class='share-button-link-text'>إرسال بالبريد الإلكتروني</span></a><a class='goog-inline-block share-button sb-blog' href='https://www.blogger.com/share-post.g?blogID=572294485534474482&postID=6269550028740384409&target=blog' onclick='window.open(this.href, "_blank", "height=270,width=475"); return false;' target='_blank' title='كتابة مدونة حول هذه المشاركة'><span class='share-button-link-text'>كتابة مدونة حول هذه المشاركة</span></a><a class='goog-inline-block share-button sb-twitter' href='https://www.blogger.com/share-post.g?blogID=572294485534474482&postID=6269550028740384409&target=twitter' target='_blank' title='‏المشاركة على X'><span class='share-button-link-text'>‏المشاركة على X</span></a><a class='goog-inline-block share-button sb-facebook' href='https://www.blogger.com/share-post.g?blogID=572294485534474482&postID=6269550028740384409&target=facebook' onclick='window.open(this.href, "_blank", "height=430,width=640"); return false;' target='_blank' title='‏المشاركة في Facebook'><span class='share-button-link-text'>‏المشاركة في Facebook</span></a><a class='goog-inline-block share-button sb-pinterest' href='https://www.blogger.com/share-post.g?blogID=572294485534474482&postID=6269550028740384409&target=pinterest' target='_blank' title='‏المشاركة على Pinterest'><span class='share-button-link-text'>‏المشاركة على Pinterest</span></a> </div> </div> <div class='post-footer-line post-footer-line-2'> <span class='post-labels'> </span> </div> <div class='post-footer-line post-footer-line-3'> <span class='post-location'> </span> </div> </div> </div> </div> <div class='comments' id='comments'> <a name='comments'></a> <h4>ليست هناك تعليقات:</h4> <div id='Blog1_comments-block-wrapper'> <dl class='avatar-comment-indent' id='comments-block'> </dl> </div> <p class='comment-footer'> <div class='comment-form'> <a name='comment-form'></a> <h4 id='comment-post-message'>إرسال تعليق</h4> <p> </p> <a href='https://www.blogger.com/comment/frame/572294485534474482?po=6269550028740384409&hl=ar&saa=85391&origin=https://10randomz.blogspot.com' id='comment-editor-src'></a> <iframe allowtransparency='true' class='blogger-iframe-colorize blogger-comment-from-post' frameborder='0' height='410px' id='comment-editor' name='comment-editor' src='' width='100%'></iframe> <script src='https://www.blogger.com/static/v1/jsbin/2830521187-comment_from_post_iframe.js' type='text/javascript'></script> <script type='text/javascript'> BLOG_CMT_createIframe('https://www.blogger.com/rpc_relay.html'); </script> </div> </p> <div id='backlinks-container'> <div id='Blog1_backlinks-container'> </div> </div> </div> </div> </div></div> </div> <div class='blog-pager' id='blog-pager'> <span id='blog-pager-newer-link'> <a class='blog-pager-newer-link' href='https://10randomz.blogspot.com/2025/05/text-to-shape-converter-import.html?hl=ar' id='Blog1_blog-pager-newer-link' title='رسالة أحدث'>رسالة أحدث</a> </span> <span id='blog-pager-older-link'> <a class='blog-pager-older-link' href='https://10randomz.blogspot.com/2025/05/youtube-to-mp3-converter-reset-and-base.html?hl=ar' id='Blog1_blog-pager-older-link' title='رسالة أقدم'>رسالة أقدم</a> </span> <a class='home-link' href='https://10randomz.blogspot.com/?hl=ar'>الصفحة الرئيسية</a> </div> <div class='clear'></div> <div class='post-feeds'> <div class='feed-links'> الاشتراك في: <a class='feed-link' href='https://10randomz.blogspot.com/feeds/6269550028740384409/comments/default' target='_blank' type='application/atom+xml'>تعليقات الرسالة (Atom)</a> </div> </div> </div><div class='widget HTML' data-version='1' id='HTML902'> <script type='text/javascript'> var disqus_shortname = 'msora'; (function() { var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true; dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js'; (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq); })(); </script> </div><div class='widget HTML' data-version='1' id='HTML901'> <div class='cmm-tabs'> <div data-tab='blogger'><div class='blogger-tab'></div></div> </div> <div id='fb-root'></div><script>(function(d, s, id){var js, fjs = d.getElementsByTagName(s)[0];if (d.getElementById(id)) return;js = d.createElement(s); js.id = id;js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.0";fjs.parentNode.insertBefore(js, fjs);}(document, 'script', 'facebook-jssdk'));</script><script>$(".facebook-tab").append("<div class='fb-comments' data-href='https://10randomz.blogspot.com/2025/05/i-will-update-existing-single-page-app.html' data-width='100%' data-numposts='5' data-colorscheme='light'></div>");</script> </div></div> <div class='post-author-widget section' id='Postwidegt2' name='Post Author Details'><div class='widget HTML' data-version='1' id='HTML10'> <h2 class='title'>Author Details</h2> <div class='widget-content'> <span><br/> <img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjL67fHw3cGMGpZTs9sQuAhA_WC_zHC3p83YwcWI7fUaKZoE2GThKiwnv_7sYLD4lLci8Mcu-XTX3Dj0YgtQ5BdX30cYa43HazawYz1goZN1a-_cKbeIt304PbJgKNI8h1MUNPxffkBDQP5/s1600-r/ad300.jpg"/></span> </div> </div></div> </div> <div id='sidebar-wrapper'> <div class='sidebar section' id='sidebar1'><div class='widget HTML' data-version='1' id='HTML4'> <h2 class='title'>Facebook</h2> <div class='widget-content'> 3/recent/post-list </div> </div><div class='widget HTML' data-version='1' id='HTML3'> <h2 class='title'>Ads</h2> <div class='widget-content'> 3/Fashion/post-list </div> </div><div class='widget LinkList' data-version='1' id='LinkList940'> <div class='widget-content'> <ul id='nav' itemscope='' itemtype='http://schema.org/SiteNavigationElement'> <li itemprop='name'><a href='#' itemprop='url'>Home</a></li> <li itemprop='name'><a href='#' itemprop='url'>about</a></li> <li itemprop='name'><a href='#' itemprop='url'>contact</a></li> <li itemprop='name'><a href='#' itemprop='url'>404</a></li> </ul> </div> </div> <div class='widget HTML' data-version='1' id='HTML103'> <script type='text/javascript'> //<![CDATA[ var recentposts_number = 4; //]]> </script> </div><div class='widget HTML' data-version='1' id='HTML104'> <script type='text/javascript'> //<![CDATA[ var randomposts_number = 4; //]]> </script> </div><!--تعذّر عرض الأداة "TextList152". There was an error processing the markup. --><div class='widget HTML' data-version='1' id='HTML105'> <script type='text/javascript'> var postperpage=7; </script> </div><div class='widget HTML' data-version='1' id='HTML106'> <script type='text/javascript'> //<![CDATA[ $(window).bind("load",function(){$('.Label a,.postags a,.m-rec h2 a,.breadcrumbs span a,.label-head a,.feat-title h2 a').each(function(){var labelPage=$(this).attr('href');$(this).attr('href',labelPage+'?&max-results=7')})}); //]]> </script> </div><div class='widget HTML' data-version='1' id='HTML900'> <style>@media only screen and (min-width:1143px){#outer-wrapper{max-width: ;}}</style> </div><div class='widget HTML' data-version='1' id='HTML186'> <div id='slider_post'> <script src='/feeds/posts/default/-/ ?+ numposts +&orderby=published&alt=json-in-script&callbackpublished&alt=json-in-script&callback=labelthumbs' type='text/javascript'> </script></div> </div><div class='widget LinkList' data-version='1' id='LinkList62'> <h2 class='title'>Social Counter</h2> <div class='widget-content'> <ul id='social'> <li class='item-social facebook count=3.5k;'><a href='#'> <i class='item-icon fa'></i><div class='hide-count'> facebook count=3.5k;</div><span class='item-text'>Followers</span> </a></li> <li class='item-social twitter count=1.7k;'><a href='#'> <i class='item-icon fa'></i><div class='hide-count'>twitter count=1.7k;</div><span class='item-text'>Followers</span> </a></li> <li class='item-social gplus count=735;'><a href='#'> <i class='item-icon fa'></i><div class='hide-count'>gplus count=735;</div><span class='item-text'>Followers</span> </a></li> <li class='item-social youtube count=2.8k;'><a href='#'> <i class='item-icon fa'></i><div class='hide-count'>youtube count=2.8k;</div><span class='item-text'>Followers</span> </a></li> <li class='item-social pinterest count=524;'><a href='#'> <i class='item-icon fa'></i><div class='hide-count'>pinterest count=524;</div><span class='item-text'>Followers</span> </a></li> <li class='item-social instagram count=849;'><a href='#'> <i class='item-icon fa'></i><div class='hide-count'>instagram count=849;</div><span class='item-text'>Followers</span> </a></li> </ul> </div> </div><div class='widget HTML' data-version='1' id='HTML100'> <h3 class='title'> JSON Variables </h3> <div class='widget-content'> </div> </div><!--تعذّر عرض الأداة "HTML101". There was an error processing the markup. --><div class='widget LinkList' data-version='2' id='LinkList156'> <div class='widget-content'> <h3 class='title'> Follow Us </h3> <ul class='social-footer social social-bg-hover'> <li class='youtube'><a class='youtube' href='/' target='_blank'></a></li> <li class='instagram'><a class='instagram' href='/' target='_blank'></a></li> <li class='email'><a class='email' href='/' target='_blank'></a></li> <li class='rss'><a class='rss' href='/' target='_blank'></a></li> <li class='instagram'><a class='instagram' href='https://instagram.com/templateifydotcom' target='_blank'></a></li> <li class='vk'><a class='vk' href='#' target='_blank'></a></li> <li class='twitch'><a class='twitch' href='#' target='_blank'></a></li> <li class='dribbble'><a class='dribbble' href='#' target='_blank'></a></li> </ul> </div> </div><div class='widget LinkList' data-version='2' id='LinkList154'> <ul data-title='Menu' id='main-menu-ul' role='menubar'> <li><a href='/' role='menuitem'>Home</a></li> <li><a href='/search/label/' role='menuitem'>WordPress</a></li> <li><a href='/search/label/' role='menuitem'>Blogger</a></li> <li><a href='/search/label/' role='menuitem'>HTML</a></li> </ul> </div><div class='widget LinkList' data-version='2' id='LinkList155'> <ul data-title='Menu' id='main-menu-ul' role='menubar'> <li><a href='/' role='menuitem'>Home</a></li> <li><a href='/search/label/Business' role='menuitem'>Blogger</a></li> <li><a href='/search/label/Technology' role='menuitem'>Technology</a></li> <li><a href='#' role='menuitem'>_Featured Posts</a></li> <li><a href='#' role='menuitem'>_Post ShortCodes</a></li> <li><a href='/2019/10/the-great-scientists-alexander-story.html' role='menuitem'>__Left Sidebar</a></li> <li><a href='/2019/10/mount-everest-tallest-high-peak-in-world_12.html' role='menuitem'>__Right Sidebar</a></li> <li><a href='/2019/10/thick-black-smoke-curling-out-of.html' role='menuitem'>__Full Width</a></li> <li><a href='/pikitemplates' role='menuitem'>_Error Page</a></li> <li><a href='#' role='menuitem'>_Contact us</a></li> <li><a href='https://www.pikitemplates.com/p/documentation-of-pixy-newspaper-9.html' role='menuitem'>Documentation</a></li> <li><a href='/p/shortcodes.html' role='menuitem'>ShortCodes</a></li> <li><a href='https://www.pikitemplates.com/2019/09/pixy-newspaper-blogger-template.html' role='menuitem'>Download this Template</a></li> <li><a href='/p/shortcodes.html' role='menuitem'>Shortcodes</a></li> </ul> </div><div class='widget LinkList' data-version='2' id='LinkList158'> <div class='widget-content'> <ul class='social-footer social social-bg-hover'> <li class='facebook-f'><a class='facebook-f' href='#' target='_blank'></a></li> <li class='twitter'><a class='twitter' href='#' target='_blank'></a></li> <li class='youtube'><a class='youtube' href='#' target='_blank'></a></li> <li class='instagram'><a class='instagram' href='#' target='_blank'></a></li> <li class='rss'><a class='rss' href='#' target='_blank'></a></li> </ul> </div> </div><div class='widget LinkList' data-version='2' id='LinkList159'> <div class='widget-content'> <ul> <li><a href='#'>About</a></li> <li><a href='#'>Privacy</a></li> <li><a href='#'>Contact Us</a></li> <li><a href='?hl=ar'>RTL Version</a></li> <li><a href='#'>rss</a></li> </ul> </div> </div><div class='widget HTML' data-version='2' id='HTML55'> <div id='license-code'> </div> </div><!--تعذّر عرض الأداة "LinkList152". There was an error processing the markup. --><div class='widget LinkList' data-version='2' id='LinkList153'> <ul class='social'> <li class='youtube'><a class='youtube' href='/' target='_blank'></a></li> <li class='instagram'><a class='instagram' href='/' target='_blank'></a></li> <li class='rss'><a class='rss' href='/' target='_blank'></a></li> </ul> </div><div class='widget LinkList' data-version='2' id='LinkList151'> <script defer='defer' type='text/javascript'> //<![CDATA[ var disqusShortname = "pixy-theme"; var commentsSystem = "blogger"; var relatedPostsNum = 3; var fixedSidebar = true; var fixedMenu = true; //]]> </script> </div><div class='widget LinkList' data-version='2' id='LinkList78'> <div class='widget-content'> <ul> <li class='facebook'><a href='https://fb.com/templatesyard' target='_blank' title='facebook'></a></li> <li class='twitter'><a href='#' target='_blank' title='twitter'></a></li> <li class='rss'><a href='#' target='_blank' title='rss'></a></li> <li class='instagram'><a href='#' target='_blank' title='instagram'></a></li> <li class='youtube'><a href='#' target='_blank' title='youtube'></a></li> <li class='linkedin'><a href='#' target='_blank' title='linkedin'></a></li> <li class='pinterest'><a href='#' target='_blank' title='pinterest'></a></li> </ul> </div> </div><!--تعذّر عرض الأداة "Text100". There was an error processing the markup. --><div class='widget HTML' data-version='1' id='HTML851'> <script type='text/javascript'> //<![CDATA[ // Plugin: Sticky jQuery ~ BY: http://stickyjs.com (function(e){var t={topSpacing:0,bottomSpacing:0,className:"is-sticky",wrapperClassName:"sticky-wrapper",center:false,getWidthFrom:"",responsiveWidth:false},n=e(window),r=e(document),i=[],s=n.height(),o=function(){var t=n.scrollTop(),o=r.height(),u=o-s,a=t>u?u-t:0;for(var f=0;f<i.length;f++){var l=i[f],c=l.stickyWrapper.offset().top,h=c-l.topSpacing-a;if(t<=h){if(l.currentTop!==null){l.stickyElement.css("width","").css("position","").css("top","");l.stickyElement.trigger("sticky-end",[l]).parent().removeClass(l.className);l.currentTop=null}}else{var p=o-l.stickyElement.outerHeight()-l.topSpacing-l.bottomSpacing-t-a;if(p<0){p=p+l.topSpacing}else{p=l.topSpacing}if(l.currentTop!=p){l.stickyElement.css("width",l.stickyElement.width()).css("position","fixed").css("top",p);if(typeof l.getWidthFrom!=="undefined"){l.stickyElement.css("width",e(l.getWidthFrom).width())}l.stickyElement.trigger("sticky-start",[l]).parent().addClass(l.className);l.currentTop=p}}}},u=function(){s=n.height();for(var t=0;t<i.length;t++){var r=i[t];if(typeof r.getWidthFrom!=="undefined"&&r.responsiveWidth===true){r.stickyElement.css("width",e(r.getWidthFrom).width())}}},a={init:function(n){var r=e.extend({},t,n);return this.each(function(){var n=e(this);var s=n.attr("id");var o=s?s+"-"+t.wrapperClassName:t.wrapperClassName;var u=e("<div></div>").attr("id",s+"-sticky-wrapper").addClass(r.wrapperClassName);n.wrapAll(u);if(r.center){n.parent().css({width:n.outerWidth(),marginLeft:"auto",marginRight:"auto"})}if(n.css("float")=="right"){n.css({"float":"none"}).parent().css({"float":"right"})}var a=n.parent();a.css("height",n.outerHeight());i.push({topSpacing:r.topSpacing,bottomSpacing:r.bottomSpacing,stickyElement:n,currentTop:null,stickyWrapper:a,className:r.className,getWidthFrom:r.getWidthFrom,responsiveWidth:r.responsiveWidth})})},update:o,unstick:function(t){return this.each(function(){var t=e(this);var n=-1;for(var r=0;r<i.length;r++){if(i[r].stickyElement.get(0)==t.get(0)){n=r}}if(n!=-1){i.splice(n,1);t.unwrap();t.removeAttr("style")}})}};if(window.addEventListener){window.addEventListener("scroll",o,false);window.addEventListener("resize",u,false)}else if(window.attachEvent){window.attachEvent("onscroll",o);window.attachEvent("onresize",u)}e.fn.sticky=function(t){if(a[t]){return a[t].apply(this,Array.prototype.slice.call(arguments,1))}else if(typeof t==="object"||!t){return a.init.apply(this,arguments)}else{e.error("Method "+t+" does not exist on jQuery.sticky")}};e.fn.unstick=function(t){if(a[t]){return a[t].apply(this,Array.prototype.slice.call(arguments,1))}else if(typeof t==="object"||!t){return a.unstick.apply(this,arguments)}else{e.error("Method "+t+" does not exist on jQuery.sticky")}};e(function(){setTimeout(o,0)})})(jQuery); //]]> </script> <script type='text/javascript'> //<![CDATA[ var stickyWork = " "; var FstickyWork = stickyWork.replace(/(\r\n|\n|\r)/gm," "); if ( FstickyWork === "yes" ) { $(document).ready(function(){$("#header-navigation").sticky({topSpacing:0});}); } //]]> </script> </div><div class='widget LinkList' data-version='1' id='LinkList77'> <h2>Footer Menu Widget</h2> <div class='widget-content'> <ul> <li><a href='/'>Home</a></li> <li><a href='https://best-result-soratemplates.blogspot.com/p/about.html'>About</a></li> <li><a href='https://best-result-soratemplates.blogspot.com/p/contact-us.html'>Contact Us</a></li> </ul> <div class='clear'></div> </div> </div><div class='widget Text' data-version='1' id='Text99'> <div class='widget-content'> 123 </div> </div><div class='widget HTML' data-version='1' id='HTML218'> <h2 class='title'>Fashion</h2> <div class='widget-content'> <span data-type="ty-tag-slide" data-label="Fashion" data-no="5"></span> </div> </div><div class='widget LinkList' data-version='2' id='LinkList70'> <style type='text/css'> #outer-wrapper{max-width:none} </style> </div><div class='widget HTML' data-version='1' id='HTML292'> <h2 class='title'>News</h2> <div class='widget-content'> <span data-type="tyleft" data-label="News"></span> </div> </div><div class='widget HTML' data-version='1' id='HTML293'> <h2 class='title'>Food</h2> <div class='widget-content'> <span data-type="tysum" data-label="Food" data-no="3"></span> </div> </div><div class='widget LinkList' data-version='2' id='LinkList72'> <div class='widget-content'> <ul> <li><a href='/'>Home</a></li> <li><a href='https://ultralite-templatesyard.blogspot.com/p/about-us.html'>About</a></li> <li><a href='https://ultralite-templatesyard.blogspot.com/p/contact-us.html'>Contact</a></li> </ul> </div> </div><div class='widget HTML' data-version='1' id='HTML294'> <h2 class='title'>Sports</h2> <div class='widget-content'> <span data-type="tyright" data-label="Sports"></span> </div> </div><div class='widget LinkList' data-version='2' id='LinkList71'> <script type='text/javascript'> //<![CDATA[ var disqusShortname = "soratemplates"; var commentsSystem = "blogger"; var fixedSidebar = true; var postPerPage = 6; var postPerPage = 5; //]]> </script> </div><div class='widget LinkList' data-version='2' id='LinkList74'> <ul id='main-menu-nav' role='menubar'> <li><a href='/' role='menuitem'>Home</a></li> <li><a href='#' role='menuitem'>Features</a></li> <li><a href='#' role='menuitem'>_Multi DropDown</a></li> <li><a href='#' role='menuitem'>__DropDown 1</a></li> <li><a href='#' role='menuitem'>__DropDown 2</a></li> <li><a href='#' role='menuitem'>__DropDown 3</a></li> <li><a href='https://spicer-alistarbot.blogspot.com/p/post-format-and-page-markup.html' role='menuitem'>_ShortCodes</a></li> <li><a href='https://www.sorabloggingtips.com/2017/01/how-to-add-sitemap-widget-in-blogspot-blogs.html' role='menuitem'>_SiteMap</a></li> <li><a href='https://spicer-alistarbot.blogspot.com/alistarbot' role='menuitem'>_Error Page</a></li> <li><a href='https://www.sorabloggingtips.com/2018/08/how-to-setup-spicer-blogger-template.html' role='menuitem'>Documentation</a></li> <li><a href='https://youtu.be/zSyWpgFO5hI' role='menuitem'>Video Documentation</a></li> <li><a href='http://www.alistarbot.com/2018/08/spicer-simple-blogger-template.html' role='menuitem'>Download This Template</a></li> <li><a href='https://youtu.be/C8O_rRPXjok' role='menuitem'>_Video Documentation</a></li> <li><a href='https://www.templatesyard.com/2020/07/ultralite-blogger-template.html' role='menuitem'>Download This Template</a></li> <li><a href='http://www.freetemplateandwidget4u.store/2020/02/raptor-blogger-template.html' role='menuitem'>Download This Template</a></li> </ul> </div><div class='widget HTML' data-version='1' id='HTML296'> <h2 class='title'>Food</h2> <div class='widget-content'> <span data-type="tybox" data-label="Food" data-no="4"></span> </div> </div><div class='widget LinkList' data-version='2' id='LinkList73'> <div class='widget-content'> <ul> <li class='facebook'><a href='https://fb.com/templatesyard' target='_blank' title='facebook'></a></li> <li class='twitter'><a href='#' target='_blank' title='twitter'></a></li> <li class='instagram'><a href='#' target='_blank' title='instagram'></a></li> <li class='pinterest'><a href='#' target='_blank' title='pinterest'></a></li> <li class='instagram'><a href='#' target='_blank' title='instagram'></a></li> </ul> </div> </div><div class='widget HTML' data-version='1' id='HTML297'> <h2 class='title'>Technology</h2> <div class='widget-content'> <span data-type="tylist" data-label="Technology"></span> </div> </div><div class='widget LinkList' data-version='2' id='LinkList76'> <h3 class='title'> Social Widget </h3> <div class='widget-content'> <ul class='social'> <li class='facebook'><a href='#' target='_blank'></a></li> <li class='twitter'><a href='#' target='_blank'></a></li> <li class='gplus'><a href='#' target='_blank'></a></li> <li class='pinterest'><a href='#' target='_blank'></a></li> <li class='instagram'><a href='#' target='_blank'></a></li> <li class='vk'><a href='#' target='_blank'></a></li> <li class='instagram'><a href='#' target='_blank'></a></li> <li class='youtube'><a href='#' target='_blank'></a></li> </ul> </div> </div><div class='widget HTML' data-version='1' id='HTML299'> <h2 class='title'>Featured</h2> <div class='widget-content'> <span data-type="tyard-recent"></span> </div> </div><div class='widget LinkList' data-version='2' id='LinkList75'> <h3 class='title'> Social Plugin </h3> <div class='widget-content'> <ul class='social-counter social social-color social-text'> <li class='facebook'><a href='http://fb.com/templatesyard' target='_blank' title='facebook'></a></li> <li class='twitter'><a href='#' target='_blank' title='twitter'></a></li> <li class='rss'><a href='#' target='_blank' title='rss'></a></li> <li class='pinterest'><a href='#' target='_blank' title='pinterest'></a></li> <li class='instagram'><a href='#' target='_blank' title='instagram'></a></li> <li class='vk'><a href='#' target='_blank' title='vk'></a></li> <li class='youtube'><a href='#' target='_blank' title='youtube'></a></li> <li class='rss'><a href='#' target='_blank' title='rss'></a></li> <li class='whatsapp'><a href='#' target='_blank' title='whatsapp'></a></li> <li class='rss'><a href='#' target='_blank' title='rss'></a></li> </ul> </div> </div><div class='widget HTML' data-version='1' id='HTML291'> <h2 class='title'>Videos</h2> <div class='widget-content'> <span data-type="tygrid" data-label="Video" data-no="6"></span> </div> </div> <!--تعذّر عرض الأداة "Image100". There was an error processing the markup. --><div class='widget Text' data-version='1' id='Text1'> <h2 class='title'>About us</h2> <div class='widget-content'> <div><span>10 Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text.</span></div><div><span><br /></span></div><div><span >Tel: +01 19 9876-54321</span></div><div><span><br /></span></div><div><span>Email: contact@mail.com</span></div> </div> <div class='clear'></div> </div><div class='widget HTML' data-version='1' id='HTML201'> </div><div class='widget HTML' data-version='1' id='HTML203'> </div><div class='widget HTML' data-version='1' id='HTML204'> </div><div class='widget HTML' data-version='1' id='HTML205'> <div class='widget-content' style='display:none'> blogger-disqus-facebook </div> </div><div class='widget HTML' data-version='1' id='HTML206'> <div class='widget-content'> <script> var disqus_shortname = 'needmag'; </script> </div> </div><div class='widget HTML' data-version='1' id='HTML207'> <script type='text/javascript'> //<![CDATA[ $(document).ready(function() { if ($(window).width() > 1100) { $("#main-wrapper, #sidebar-wrapper").theiaStickySidebar({ additionalMarginTop: 25, additionalMarginBottom: 25 }); } }); //]]> </script> </div><div class='widget HTML' data-version='1' id='HTML208'> <h2 class='title'>Follow Us @alistarbot</h2> <div class='widget-content'> <div id='instafeed'/> <script type='text/javascript'>//<![CDATA[ var feed = new Instafeed({ get: 'user', userId: 4578212267, limit:6, sortBy:'random', accessToken: '4578212267.1677ed0.1c160e2835fd4d33888b0175d44bdf9d', template: '<li><a href="{{link}}" target="_blank"><img src="{{image}}" /><div class="insta-likes"><div style="display: table; vertical-align: middle; height: 100%; width: 100%;"><span style="display: table-cell; vertical-align: middle; height: 100%; width: 100%;">{{likes}} <i class="fa fa-heart"></i><br/>{{comments}} <i class="fa fa-comment"></i></span></div></div></a></li>', resolution: 'standard_resolution' }); feed.run(); //]]> </script></div> </div> </div> <div class='widget ContactForm' data-version='1' id='ContactForm1'> <h2 class='title'>Contact Us</h2> <div class='contact-form-widget'> <div class='form'> <form name='contact-form'> <p></p> الاسم <br/> <input class='contact-form-name' id='ContactForm1_contact-form-name' name='name' size='30' type='text' value=''/> <p></p> بريد إلكتروني <span style='font-weight: bolder;'>*</span> <br/> <input class='contact-form-email' id='ContactForm1_contact-form-email' name='email' size='30' type='text' value=''/> <p></p> رسالة <span style='font-weight: bolder;'>*</span> <br/> <textarea class='contact-form-email-message' cols='25' id='ContactForm1_contact-form-email-message' name='email-message' rows='5'></textarea> <p></p> <input class='contact-form-button contact-form-button-submit' id='ContactForm1_contact-form-submit' type='button' value='إرسال'/> <p></p> <div style='text-align: center; max-width: 222px; width: 100%'> <p class='contact-form-error-message' id='ContactForm1_contact-form-error-message'></p> <p class='contact-form-success-message' id='ContactForm1_contact-form-success-message'></p> </div> </form> </div> </div> <div class='clear'></div> </div><div class='widget HTML' data-version='2' id='HTML200'> <h3 class='title'> Ticker </h3> <div class='widget-content'> 6/recent/ticker-posts </div> </div><div class='widget LinkList' data-version='2' id='LinkList86'> <h3 class='title'> Tags Menu Widget </h3> <div class='widget-content'> <ul> <li><a href='#'>1080p Movies</a></li> <li><a href='#'>300Mb Movies</a></li> <li><a href='#'>720p HEVC Movies</a></li> <li><a href='#'>Bollywood Movies</a></li> <li><a href='#'>Bollywood Mp3 Songs</a></li> <li><a href='#'>Bollywood Video Songs</a></li> <li><a href='#'>Dual Audio</a></li> <li><a href='#'>English TV Shows</a></li> <li><a href='#'>Hindi Dubbed</a></li> <li><a href='#'>Hindi TV Shows</a></li> <li><a href='#'>Hollywood Movies</a></li> <li><a href='#'>Malayalam Movies</a></li> <li><a href='#'>Marathi Movies</a></li> <li><a href='#'>Mobile Movies</a></li> <li><a href='#'>Multi Audio</a></li> <li><a href='#'>Pakistani Movies</a></li> <li><a href='#'>Pc Games</a></li> <li><a href='#'>Pre Release</a></li> <li><a href='#'>Punjabi Movies</a></li> <li><a href='#'>Single Video Songs</a></li> <li><a href='#'>Tamil Movies</a></li> <li><a href='#'>Telugu Movies</a></li> <li><a href='#'>Trailers</a></li> <li><a href='#'>Uncategorized</a></li> <li><a href='#'>WEB Series</a></li> </ul> </div> </div><div class='widget LinkList' data-version='1' id='LinkList99'> <ul class='art-hmenu'></ul> <script> menuitems.push(new Array('About','https://')); </script> <script> artDisplayTopMenu(menuitems); </script> </div><div class='widget HTML' data-version='2' id='HTML150'> <div class='widget-content'> </div> </div><div class='widget Image' data-version='2' id='Image70'> <div class='logo-content'> <a href='https://10randomz.blogspot.com/?hl=ar'><img alt='10randomz' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhrjJfzZ3Uqb54ZL8KOfdfrMisT0IU_vbdnBUStct_KAP0HKZ05E_TQyhfbxTppGA6U-poKvMz6gx5J52pEEmWvKXBr_VhSntZmCZa69u8CnE_kMDtGA0fOtd_ZAAeMMXBm2QINLT_qlyG5/s1600/Ultra-Lite-Mobile.png'/></a> </div> </div><div class='widget LinkList' data-version='1' id='LinkList98'> <div class='widget-content'> <ul id='nav2' itemscope='' itemtype='http://schema.org/SiteNavigationElement'> <li itemprop='name'><a href='#' itemprop='url'>Features</a></li> <li itemprop='name'><a href='#' itemprop='url'>_Multi DropDown</a></li> <li itemprop='name'><a href='#' itemprop='url'>__DropDown 1</a></li> <li itemprop='name'><a href='#' itemprop='url'>__DropDown 2</a></li> <li itemprop='name'><a href='#' itemprop='url'>__DropDown 3</a></li> <li itemprop='name'><a href='https://www.freetemplateandwidget4u.store/p/post-format-and-page-markup.html' itemprop='url'>_ShortCodes</a></li> <li itemprop='name'><a href='http://www.sorabloggingtips.com/2017/01/how-to-add-sitemap-widget-in-blogspot-blogs.html' itemprop='url'>_SiteMap</a></li> <li itemprop='name'><a href='https://www.freetemplateandwidget4u.store/alistarbot' itemprop='url'>_Error page</a></li> <li itemprop='name'><a href='mega/Sports' itemprop='url'>Mega Menu</a></li> <li itemprop='name'><a href='http://www.shardawebservices.com/' itemprop='url'>Seo Services</a></li> <li itemprop='name'><a href='http://www.sorabloggingtips.com/2016/10/how-to-setup-need-mag-blogger-template.html' itemprop='url'>Documentation</a></li> <li itemprop='name'><a href='http://www.alistarbot.com/2016/08/needmag-blogger-templates.html' itemprop='url'>Download This Template</a></li> </ul> </div> </div><!--تعذّر عرض الأداة "LinkList101". There was an error processing the markup. --><div class='widget LinkList' data-version='1' id='LinkList100'> <div class='widget-content'> <ul id='nav-menu1' itemscope='' itemtype='http://schema.org/SiteNavigationElement'> <li itemprop='name'><a href='/' itemprop='url'><i class="fa fa-home" style="color:#ffe11b;"></i> Home</a></li> <li itemprop='name'><a href='#' itemprop='url'>Features</a></li> <li itemprop='name'><a href='#' itemprop='url'>_Multi DropDown</a></li> <li itemprop='name'><a href='#' itemprop='url'>__DropDown 1</a></li> <li itemprop='name'><a href='#' itemprop='url'>__DropDown 2</a></li> <li itemprop='name'><a href='https://www.freetemplateandwidget4u.store/2020/11/sparks-premium-version-blogger-template-free-download.html' itemprop='url'>_ShortCodes</a></li> <li itemprop='name'><a href='https://www.freetemplateandwidget4u.store/2020/11/sparks-premium-version-blogger-template-free-download.html' itemprop='url'>_SiteMap</a></li> <li itemprop='name'><a href='https://www.freetemplateandwidget4u.store/2020/11/sparks-premium-version-blogger-template-free-download.html' itemprop='url'>_Error Page</a></li> <li itemprop='name'><a href='https://www.freetemplateandwidget4u.store/2020/11/sparks-premium-version-blogger-template-free-download.html' itemprop='url'>Documentation</a></li> <li itemprop='name'><a href='https://www.freetemplateandwidget4u.store/2020/11/sparks-premium-version-blogger-template-free-download.html' itemprop='url'>Seo Services</a></li> <li itemprop='name'><a href='https://www.freetemplateandwidget4u.store/2020/11/sparks-premium-version-blogger-template-free-download.html' itemprop='url'>Download This Template</a></li> </ul> <script type='text/javascript'> //<![CDATA[ $("#LinkList100").each(function(){var e="<ul id='nav-menu1'><li><ul id='sub-menu'>";$("#LinkList100 li").each(function(){var t=$(this).text(),n=t.substr(0,1),r=t.substr(1);"_"==n?(n=$(this).find("a").attr("href"),e+='<li><a href="'+n+'">'+r+"</a></li>"):(n=$(this).find("a").attr("href"),e+='</ul></li><li><a href="'+n+'">'+t+"</a><ul id='sub-menu'>")});e+="</ul></li></ul>";$(this).html(e);$("#LinkList100 ul").each(function(){var e=$(this);if(e.html().replace(/\s| /g,"").length==0)e.remove()});$("#LinkList100 li").each(function(){var e=$(this);if(e.html().replace(/\s| /g,"").length==0)e.remove()})}); //]]> </script> </div> </div><!--تعذّر عرض الأداة "LinkList103". There was an error processing the markup. --><!--تعذّر عرض الأداة "LinkList104". There was an error processing the markup. --><div class='widget Attribution' data-version='1' id='Attribution1'> <div class='widget-content' style='text-align: center;'> يتم التشغيل بواسطة <a href='https://www.blogger.com' target='_blank'>Blogger</a>. </div> <div class='clear'></div> </div><div class='widget HTML' data-version='1' id='HTML20'> <h2 class='title'>Box 2 Title</h2> <div class='widget-content'> </div> <div class='clear'></div> </div><div class='widget HTML' data-version='1' id='HTML21'> <h2 class='title'>Ad Code</h2> <div class='widget-content'> <a class="sora-ads-full" href="javascript:;">Responsive Advertisement</a> <style> .sora-ads-full { display: block; background-color: #eee; text-align: center; font-size: 13px; color: #aaaaaa; font-weight: 400; font-style: italic; line-height: 90px; border: 1px solid #ccc; } </style> </div> <div class='clear'></div> </div><div class='widget HTML' data-version='1' id='HTML22'> <h2 class='title'>Simple Grid</h2> <div class='widget-content'> random/hot-posts </div> <div class='clear'></div> </div><div class='widget HTML' data-version='2' id='HTML23'> <h3 class='title'> Ad Code </h3> <div class='widget-content'> <a class="sora-ads-full" href="javascript:;">Responsive Advertisement</a> <style> .sora-ads-full { display: block; background-color: #eee; text-align: center; font-size: 13px; color: #aaaaaa; font-weight: 400; font-style: italic; line-height: 90px; border: 1px solid #ccc; } </style> </div> </div><div class='widget HTML' data-version='1' id='HTML24'> <h2 class='title'>Ad Code</h2> <div class='widget-content'> <a class="sora-ads-full" href="javascript:;">Responsive Advertisement</a> <style> .sora-ads-full { display: block; background-color: #eee; text-align: center; font-size: 13px; color: #aaaaaa; font-weight: 400; font-style: italic; line-height: 90px; border: 1px solid #ccc; } </style> </div> <div class='clear'></div> </div><div class='widget HTML' data-version='1' id='HTML25'> <h3 class='title'> ads in post </h3> <div class='widget-content'> <a class="ads-here"href="https://saurabhtechnology1.blogspot.com/" rel='dofollow'>Responsive Advertisement</a> </div> </div><!--تعذّر عرض الأداة "TextList1". There was an error processing the markup. --><div class='widget HTML' data-version='1' id='HTML26'> <h3 class='title'> Nature </h3> <div class='widget-content'> {getBlock} $results={6} $label={Nature} $type={grid1} </div> </div><div class='widget LinkList' data-version='2' id='LinkList23'> <script type='text/javascript'> //<![CDATA[ var disqusShortname = "pikitemplates"; var commentsSystem = "blogger"; var fixedMenu = true; var fixedSidebar = true; var postPerPage = 9; //]]> </script> </div><div class='widget HTML' data-version='1' id='HTML28'> <h3 class='title'> Featured Video </h3> <div class='widget-content'> </div> </div> <div class='widget LinkList' data-version='1' id='LinkList20'> <div class='widget-content'> <ul> <li><a class='facebook' href='http://' title='facebook'></a></li> <li><a class='twitter' href='http://' title='twitter'></a></li> <li><a class='instagram' href='http://' title='instagram'></a></li> <li><a class='gplus' href='http://' title='gplus'></a></li> </ul> </div> </div><div class='widget LinkList' data-version='1' id='LinkList110'> <div class='widget-content'> <ul id='nav' itemscope='' itemtype='http://schema.org/SiteNavigationElement'> <li itemprop='name'><a href='#' itemprop='url'>Features</a></li> <li itemprop='name'><a href='#' itemprop='url'>_Multi DropDown</a></li> <li itemprop='name'><a href='#' itemprop='url'>__DropDown 1</a></li> <li itemprop='name'><a href='#' itemprop='url'>__DropDown 2</a></li> <li itemprop='name'><a href='http://flexzine-alistarbot.blogspot.in/p/shortcodes.html' itemprop='url'>_ShortCodes</a></li> <li itemprop='name'><a href='http://www.sorabloggingtips.com/2017/01/how-to-add-sitemap-widget-in-blogspot-blogs.html' itemprop='url'>_SiteMap</a></li> <li itemprop='name'><a href='http://flexzine-alistarbot.blogspot.in/alistarbot' itemprop='url'>_Error Page</a></li> <li itemprop='name'><a href='http://www.shardawebservices.com/' itemprop='url'>Seo Services</a></li> <li itemprop='name'><a href='http://www.sorabloggingtips.com/2017/10/how-to-setup-flexzine-blogger-template.html' itemprop='url'>Documentation</a></li> <li itemprop='name'><a href='http://www.alistarbot.com/2017/10/flexzine-blogger-templates.html' itemprop='url'>Download This Template</a></li> </ul> </div> </div><div class='widget HTML' data-version='1' id='HTML92'> <h2 class='title'>Label</h2> <div class='widget-content'> </div> <div class='clear'></div> </div><div class='widget BlogSearch' data-version='1' id='BlogSearch1'> <h2 class='title'>Vectors, Stock Photos, PSD, Icons...</h2> <div class='widget-content'> <div id='BlogSearch1_form'> <form action='https://10randomz.blogspot.com/search' class='gsc-search-box' target='_top'> <table cellpadding='0' cellspacing='0' class='gsc-search-box'> <tbody> <tr> <td class='gsc-input'> <input autocomplete='off' class='gsc-input' name='q' size='10' title='search' type='text' value=''/> </td> <td class='gsc-search-button'> <input class='gsc-search-button' title='search' type='submit' value='البحث'/> </td> </tr> </tbody> </table> </form> </div> </div> <div class='clear'></div> </div><div class='widget HTML' data-version='1' id='HTML95'> <h2 class='title'>Post Top Ad</h2> <div class='widget-content'> <span> <span> <div class="lalulintas"><span class="rambuhijau">Responsive Ads Here</span> </div> <style type="text/css"> .lalulintas{width:100%;height:100px;background:#f11809;margin:0 auto;position:relative;} .rambuhijau{background:#f8695f;position:absolute;display:block;color:rgba(0,0,0,0.2);text-align:center;text-transform:uppercase;letter-spacing:2px;font-size:180%;padding:10px;margin:5px;left:0;right:0;top:0;bottom:0;font-weight:700;line-height:4.4rem} @media only screen and (max-width: 768px) { .rambuhijau {font-size:100%;} } </style></span></span> </div> </div><div class='widget BlogArchive' data-version='1' id='BlogArchive1'> <h2>Archive</h2> <div class='widget-content'> <div id='ArchiveList'> <div id='BlogArchive1_ArchiveList'> <select id='BlogArchive1_ArchiveMenu'> <option value=''>Archive</option> <option value='https://10randomz.blogspot.com/2025/05/?hl=ar'>مايو (6)</option> <option value='https://10randomz.blogspot.com/2022/08/?hl=ar'>أغسطس (1)</option> <option value='https://10randomz.blogspot.com/2021/09/?hl=ar'>سبتمبر (118)</option> <option value='https://10randomz.blogspot.com/2021/08/?hl=ar'>أغسطس (74)</option> </select> </div> </div> </div> </div><div class='widget LinkList' data-version='1' id='LinkList236'> <div class='widget-content'> <ul id='social'> <li><a class='facebook' href='#' title='facebook'></a></li> <li><a class='twitter' href='#' title='twitter'></a></li> <li><a class='gplus' href='#' title='gplus'></a></li> <li><a class='bloglovin' href='#' title='bloglovin'></a></li> <li><a class='instagram' href='#' title='instagram'></a></li> <li><a class='dribbble' href='#' title='dribbble'></a></li> <li><a class='rss' href='#' title='rss'></a></li> <li><a class='behance' href='#' title='behance'></a></li> <li><a class='instagram' href='#' title='instagram'></a></li> <li><a class='delicious' href='#' title='delicious'></a></li> </ul> </div> </div><div class='widget HTML' data-version='1' id='HTML98'> <h2 class='title'>Post Bottom Ad</h2> <div class='widget-content'> <span> <span> <div class="lalulintas"><span class="rambuhijau">Responsive Ads Here</span> </div> <style type="text/css"> .lalulintas{width:100%;height:100px;background:#f11809;margin:0 auto;position:relative;} .rambuhijau{background:#f8695f;position:absolute;display:block;color:rgba(0,0,0,0.2);text-align:center;text-transform:uppercase;letter-spacing:2px;font-size:180%;padding:10px;margin:5px;left:0;right:0;top:0;bottom:0;font-weight:700;line-height:4.4rem} @media only screen and (max-width: 768px) { .rambuhijau {font-size:100%;} } </style></span></span> </div> </div><div class='widget Text' data-version='2' id='Text150'> <span class='copyright-text'>Copyright © 2020 <a href="/" target="_blank">FlexNews</a></span> </div><div class='widget HTML' data-version='1' id='HTML11'> <h2 class='title'>Industry</h2> <div class='widget-content'> 4/Chemical industry/feat-list </div> <div class='clear'></div> </div><div class='widget HTML' data-version='2' id='HTML12'> <h3 class='title'> Free Course </h3> <div class='widget-content'> 3/Free Course/col-left </div> </div><div class='widget LinkList' data-version='1' id='LinkList230'> <div class='widget-content'> <ul id='social'> <li><a class='facebook' href='#' title='facebook'></a></li> <li><a class='twitter' href='#' title='twitter'></a></li> <li><a class='gplus' href='#' title='gplus'></a></li> <li><a class='instagram' href='#' title='instagram'></a></li> <li><a class='pinterest' href='#' title='pinterest'></a></li> <li><a class='linkedin' href='#' title='linkedin'></a></li> <li><a class='rss' href='#' title='rss'></a></li> <li><a class='behance' href='#' title='behance'></a></li> <li><a class='instagram' href='#' title='instagram'></a></li> <li><a class='delicious' href='#' title='delicious'></a></li> </ul> </div> </div><div class='widget HTML' data-version='1' id='HTML13'> <h2 class='title'>Breaking</h2> <div class='widget-content'> <span data-type="recent" data-no="5"></span> </div> </div><div class='widget HTML' data-version='2' id='HTML14'> <h3 class='title'> Subscribe Us </h3> <div class='widget-content'> <div class="videoWrapper"> <!-- Copy & Pasted from YouTube --> <iframe width="560" height="349" src="https://www.youtube.com/embed/H5kHzKfwxKg" frameborder="0" allowfullscreen></iframe> </div> <style> .videoWrapper { position: relative; padding-bottom: 56.25%; /* 16:9 */ padding-top: 25px; height: 0; } .videoWrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } </style> </div> </div><div class='widget HTML' data-version='1' id='HTML15'> <h2 class='title'>Sports</h2> <div class='widget-content'> 3/Sports/small-col-right </div> <div class='clear'></div> </div><div class='widget HTML' data-version='2' id='HTML16'> <h3 class='title'> Ad Space </h3> <div class='widget-content'> <a class="sora-ads-side" href="javascript:;">Responsive Advertisement</a> <style> .sora-ads-side { display: block; background-color: #eee; text-align: center; font-size: 13px; color: #aaaaaa; font-weight: 400; font-style: italic; line-height: 250px; border: 1px solid #ccc; } </style> </div> </div><div class='widget HTML' data-version='1' id='HTML17'> <h2 class='title'>box3</h2> <div class='widget-content'> </div> <div class='clear'></div> </div><div class='widget HTML' data-version='1' id='HTML18'> <div class='widget-content'> <div id='subscribe-css'> <p class='subscribe-note'><span><i class="fa fa-envelope-o" aria-hidden="true"></i> Subscribe</span> <span class='itatu'>For</span> New Deals, Coupons, Discounts</p> <p class="sub-desc">We’ll never share your email address with a third-party.</p> <div class='subscribe-wrapper'> <div class='subscribe-form'> <form action='http://feedburner.google.com/fb/a/mailverify?uri=SaurabhDesign' class='subscribe-form' method='post' onsubmit='window.open ('http://feedburner.google.com/fb/a/mailverify?uri=SaurabhDesign', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true' target='popupwindow'> <input name='uri' type='hidden' value='SaurabhDesign'/><input name='loc' type='hidden' value='en_US'/><input autocomplete='off' class='subscribe-css-email-field' name='email' placeholder='Enter your Email'/><input class='subscribe-css-email-button' title='' type='Submit' value='Submit'/></form> </div> </div> </div> </div> </div><div class='widget HTML' data-version='2' id='HTML19'> <h3 class='title'> Header Ads </h3> <div class='widget-content'> <img alt="ads header" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiLvk30PmIInrgy9dzhOk3q1t7P2PeqGpHmud20rjfLMFLurjQ88RII2I6vWUEutTjeugiRr9DFT3C8xI1ilVaTzNV2AgkR6p4E5_MW9T_2upn2k6M8YFPTwbZig_ecPsssSxA31t3hWJWN/s1600-r/ad728.gif" /> </div> </div> <div class='widget HTML' data-version='1' id='HTML41'> <h2 class='title'>Featured Section</h2> <div class='widget-content'> featured/recent </div> <div class='clear'></div> </div><div class='widget HTML' data-version='1' id='HTML42'> <h2 class='title'>Mega Grid</h2> <div class='widget-content'> megagrid/recent </div> <div class='clear'></div> </div><div class='widget LinkList' data-version='2' id='LinkList1'> <h3 class='title'> Follow Us </h3> <div class='widget-content'> <ul> <li><a href='http://'>Home</a></li> <li><a href='https://finance-omtemplates.blogspot.com/p/about.html'>About Us</a></li> <li><a href='https://finance-omtemplates.blogspot.com/p/contact-us_18.html'>Contact Us</a></li> <li><a href='#'><i class="fa fa-instagram"></i></a></li> <li><a href='#'><i class="fa fa-pinterest"></i></a></li> <li><a href='#'><i class="fa fa-linkedin"></i></a></li> <li><a href='https://telegram.me/SaurabhDesign $ Telegram'>telegram</a></li> <li><a href='# $ WhatsApp'>whatsapp</a></li> </ul> </div> </div> <div class='widget LinkList' data-version='2' id='LinkList3'> <div class='widget-content'> <ul class='nav1'> <span id='Date'></span> <li> <a href='https://www.pikitemplates.com/?m=1'> About Us </a> </li> <li> <a href='https://www.pikitemplates.com/?m=1'> Contact us </a> </li> <li> <a href='https://www.pikitemplates.com/?m=1'> Privacy Policy </a> </li> <li> <a href='https://www.pikitemplates.com/p/documentation-of-pixy-newspaper-9.html'> Documentation </a> </li> </ul> </div> </div><div class='widget LinkList' data-version='2' id='LinkList4'> <div class='widget-content'> <ul class='social'> <li><a class='facebook' href='https://facebook.com/pikitemplates' target='_blank'></a></li> <li><a class='whatsapp' href='#' target='_blank'></a></li> <li><a class='telegram' href='#' target='_blank'></a></li> <li><a class='twitter' href='https://twitter.com/PikiTemplates' target='_blank'></a></li> <li><a class='instagram' href='https://www.instagram.com/pikitemplates.com/' target='_blank'></a></li> </ul> </div> </div><div class='widget LinkList' data-version='2' id='LinkList7'> <div class='widget-content'> <h3 class='title'> Follow Us </h3> <ul class='social-footer social-bg'> <li class='facebook-f'><a class='facebook-f' href='https://www.pikitemplates.com/' target='_blank'></a></li> <li class='twitter'><a class='twitter' href='https://www.pikitemplates.com/' target='_blank'></a></li> <li class='youtube'><a class='youtube' href='https://www.pikitemplates.com/' target='_blank'></a></li> <li class='instagram'><a class='instagram' href='https://www.pikitemplates.com/' target='_blank'></a></li> <li class='reddit'><a class='reddit' href='https://www.pikitemplates.com/' target='_blank'></a></li> </ul> </div> </div> <div class='widget HTML' data-version='1' id='HTML920'> <style> .box-sec { display: block; } </style> </div><div class='widget Label' data-version='1' id='Label4'> <h2>Labels</h2> <div class='widget-content list-label-widget-content'> <ul> </ul> </div> </div> <div class='widget HTML' data-version='1' id='HTML30'> <div class='widget-content'> <p> Welcome To Basil </p> </div> <div class='clear'></div> </div> <div class='widget Image' data-version='2' id='Image1'> <div class='widget-content'> <style type='text/css'> #intro-wrap{display:block} #intro-wrap:before{background-image:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgddBvTN6RmI7PAgexrcsJwVSF2gaVjuBT1bEvingj0QP2JY2eu-bKiRHkhQtplCETUZJh8yvZcjh-wmwvhd_BUhK0u6u0pqMyatgzYmGVVIPSzi0Z-MoSGxEiP8ViFAjlEYAqpSQe-M2ok/s1600/slider-1.png)} </style> <div class='intro-content'> <h3 class='intro-title'>Find Free Vectors, Stock Photos and PSD</h3> <p class='intro-snippet'>Graphic resources for everyone.</p> </div> </div> </div><div class='widget Label' data-version='1' id='Label3'> <h2>Labels</h2> <div class='widget-content list-label-widget-content'> <ul> </ul> </div> </div><div class='widget Label' data-version='2' id='Label2'> <h3 class='title'> Tags </h3> <div class='widget-content cloud-label'> <ul> </ul> </div> </div><div class='widget HTML' data-version='2' id='HTML33'> <h3 class='title'> Advertisement </h3> <div class='widget-content'> <a href='javascript:;'><img alt='Main Ad' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhQnsD-IpTCOVpBnzx92bQ2kiNjTvwi9d9VCazXWbfQPvOMAVCozEb0RNsuYLCi6zj9XR9sVT5np0C7AQWhyphenhyphenc2fj045lnC9-zqARgDsqvLlXY-oRf-m1eSlP04UJum9UQxtOX3nMxstb_c/s1600/ads.png'/></a> </div> </div><div class='widget Image' data-version='2' id='Image150'> <div class='widget-content'> <div class='custom-image'> <a href='/'> <img alt='10randomz' id='Image150_img' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhrYfMSiUX1AP1Tx6dJ4zbf97jGkMZjrp4FY8-vbyxd122848s8SVChgPm9g27YjM5EdhNyN-6dVS272q5SEBvCee1NLfQ-ua3EyyiHkMZdq1HGpMV_QblXRY_ypN-i9ZswqWoD1_gzQ4tp/s1600/Ultra-Lite-small.png'/> </a> </div> <p class='image-caption excerpt'>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's.</p> </div> </div><div class='widget Image' data-version='2' id='Image151'> <div class='logo-content'> <a href='https://10randomz.blogspot.com/?hl=ar'><img alt='10randomz' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgG6C2wg2OVzn4wmOtxYEc6Cr8RK_4lBq3ye2-zsHk8XOnOGT9HvSHW7zn6dZTkFhAdeBp_XZYTFBKvPUD2RMleVYlNHWsvUKOlOccq3efhVlz0DM4kONRilgCCNLIzbFHQbYPDkSNtB9w/s1600/Pixy+Newspaper+White.png'/></a> </div> </div><div class='widget LinkList' data-version='1' id='LinkList250'> <div class='widget-content'> <ul id='social'> <li><a class='facebook' href='#' title='facebook'></a></li> <li><a class='twitter' href='#' title='twitter'></a></li> <li><a class='pinterest' href='#' title='pinterest'></a></li> <li><a class='instagram' href='#' title='instagram'></a></li> <li><a class='youtube' href='#' title='youtube'></a></li> <li><a class='rss' href='#' title='rss'></a></li> </ul> </div> </div> <div class='widget HTML' data-version='1' id='HTML8'> <h2 class='title'>Facebook</h2> <div class='widget-content'> <center><div class="fb-page" data-href="https://www.facebook.com/alistarbot/" data-width="360" data-small-header="false" data-adapt-container-width="true" data-hide-cover="false" data-show-facepile="true"></div></center> </div> <div class='clear'></div> </div><div class='widget LinkList' data-version='2' id='LinkList8'> <div class='widget-content'> <ul> <li><a href='/'>Home</a></li> <li><a href='/p/about-us.html'>About</a></li> <li><a href='/p/about-us.html'>Contact us</a></li> <li><a href='/p/about-us.html'>Privacy Policy</a></li> </ul> </div> </div><div class='widget HTML' data-version='2' id='HTML7'> <h3 class='title'> Technology </h3> <div class='widget-content'> 3/Technology/post-list </div> </div><div class='widget PageList' data-version='1' id='PageList1'> <h2>Pages</h2> <div class='widget-content'> <ul id='nav2'> <li> <a href='https://10randomz.blogspot.com/?hl=ar'>Home</a> </li> </ul> </div> </div><div class='widget HTML' data-version='1' id='HTML910'> <script type='text/javascript'> //<![CDATA[ var perPage = 12; //]]> </script> </div><div class='widget HTML' data-version='2' id='HTML6'> <h3 class='title'> Facebook </h3> <div class='widget-content'> <center><div class="fb-page" data-href="https://www.facebook.com/alistarbot" data-width="360" data-small-header="false" data-adapt-container-width="true" data-hide-cover="false" data-show-facepile="true"></div></center> </div> </div><div class='widget HTML' data-version='1' id='HTML911'> <style>a.Video:before {content:"\f144"} a.Car:before {content:"\f1b9"} a.Business:before {content:"\f0b1"} a.People:before {content:"\f183"} a.Nature:before {content:"\f06c"} a.Fashion:before {content:"\f0c4"} a.Gallery:before {content:"\f03e"} a.Technology:before {content:"\f1e6"} a.Learn:before, a.Culture:before {content:"\f02d"} a.Music:before {content:"\f001"} a.Sports:before {content:"\f091"} a.Children:before {content:"\f1ae"} a.Photography:before {content:"\f030"} a.Beauty:before {content:"\f004"} a.Food:before {content:"\f015"} a.News:before {content:"\f1ea"}</style> </div><div class='widget HTML' data-version='1' id='HTML5'> <h2 class='title'>Recent Posts</h2> <div class='widget-content'> recentposts </div> <div class='clear'></div> </div><div class='widget PageList' data-version='1' id='PageList5'> <div class='widget-content'> <ul id='navigation'> <li><a href='https://10randomz.blogspot.com/?hl=ar'>Home</a></li> </ul> </div> </div><div class='widget LinkList' data-version='1' id='LinkList50'> <div class='widget-content'> <ul> <li><a class='facebook' href='http://' title='facebook'></a></li> <li><a class='twitter' href='http://' title='twitter'></a></li> <li><a class='youtube' href='http://' title='youtube'></a></li> <li><a class='instagram' href='http://' title='instagram'></a></li> <li><a class='gplus' href='http://' title='gplus'></a></li> <li><a class='instagram' href='#' title='instagram'></a></li> </ul> </div> </div><div class='widget PopularPosts' data-version='2' id='PopularPosts2'> <h3 class='title'> Most Popular </h3> <div class='widget-content'> <div role='feed'> </div> </div> </div><div class='widget PopularPosts' data-version='1' id='PopularPosts3'> <h2>LATEST POSTS</h2> <div class='widget-content popular-posts'> <ul> <li> <div class='item-content'> <a href='https://10randomz.blogspot.com/2025/05/enhanced-frame-border-effects-adder-to_9.html?hl=ar' target='_blank'> <img alt='' border='0' height='72px' src='http://3.bp.blogspot.com/-6vKbXbvOUDs/VPeDYUWW10I/AAAAAAAACFQ/NioDlgyEZhs/s1600/11-150x150.jpg' width='72px'/> </a> <div class='item-title'><a href='https://10randomz.blogspot.com/2025/05/enhanced-frame-border-effects-adder-to_9.html?hl=ar'>(بلا عنوان)</a></div> <div class='item-snippet'> Enhanced Frame, Border & Effects Adder to Image Tool </div> </div> <div style='clear: both;'></div> </li> <li> <div class='item-content'> <a href='https://10randomz.blogspot.com/2025/05/i-will-update-existing-single-page-app.html?hl=ar' target='_blank'> <img alt='' border='0' height='72px' src='http://3.bp.blogspot.com/-6vKbXbvOUDs/VPeDYUWW10I/AAAAAAAACFQ/NioDlgyEZhs/s1600/11-150x150.jpg' width='72px'/> </a> <div class='item-title'><a href='https://10randomz.blogspot.com/2025/05/i-will-update-existing-single-page-app.html?hl=ar'>(بلا عنوان)</a></div> <div class='item-snippet'>I will update the existing single-page app with an option for user to upload an image. This image will be used inside the shape instead of t...</div> </div> <div style='clear: both;'></div> </li> <li> <div class='item-content'> <a href='https://10randomz.blogspot.com/2025/05/text-to-shape-converter-import.html?hl=ar' target='_blank'> <img alt='' border='0' height='72px' src='http://3.bp.blogspot.com/-6vKbXbvOUDs/VPeDYUWW10I/AAAAAAAACFQ/NioDlgyEZhs/s1600/11-150x150.jpg' width='72px'/> </a> <div class='item-title'><a href='https://10randomz.blogspot.com/2025/05/text-to-shape-converter-import.html?hl=ar'>(بلا عنوان)</a></div> <div class='item-snippet'> Text to Shape Converter Text to Shape Converter Enter Text: Select Shape: Download Image </div> </div> <div style='clear: both;'></div> </li> <li> <div class='item-content'> <div class='item-thumbnail'> <a href='https://10randomz.blogspot.com/2021/09/sum-calculator-script_19.html?hl=ar' target='_blank'> <img alt='' border='0' height='72' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjQzMmGV0LKbg8JYpreg77mEyuVAgzq1jGZkcASeUZywunZSeeIMsLIRIHMOVwtdu6T9iyzMDX26OT1-_uLrGSIXZwLOel_EdhLfK03VxaG5db4QtMiYgjBxf0PbeZmpKVYS6s8GlUx1WE/s72-c/' width='72'/> </a> </div> <div class='item-title'><a href='https://10randomz.blogspot.com/2021/09/sum-calculator-script_19.html?hl=ar'>Sum Calculator Script</a></div> <div class='item-snippet'>Sum of calculator Sum of Series in Javascript Choose Sequences (K) = Σ k k^2 k^3 2k-1 k(k+1) 1 / k(k+1) k(k+1)(k+2) 1 / k(k+1)(k+2) Number o...</div> </div> <div style='clear: both;'></div> </li> <li> <div class='item-content'> <a href='https://10randomz.blogspot.com/2021/09/prime-number-calculator.html?hl=ar' target='_blank'> <img alt='' border='0' height='72px' src='http://3.bp.blogspot.com/-6vKbXbvOUDs/VPeDYUWW10I/AAAAAAAACFQ/NioDlgyEZhs/s1600/11-150x150.jpg' width='72px'/> </a> <div class='item-title'><a href='https://10randomz.blogspot.com/2021/09/prime-number-calculator.html?hl=ar'>Prime Number Calculator</a></div> <div class='item-snippet'>&copy </div> </div> <div style='clear: both;'></div> </li> <li> <div class='item-content'> <a href='https://10randomz.blogspot.com/2021/09/life-insurance-calculator-script_19.html?hl=ar' target='_blank'> <img alt='' border='0' height='72px' src='http://3.bp.blogspot.com/-6vKbXbvOUDs/VPeDYUWW10I/AAAAAAAACFQ/NioDlgyEZhs/s1600/11-150x150.jpg' width='72px'/> </a> <div class='item-title'><a href='https://10randomz.blogspot.com/2021/09/life-insurance-calculator-script_19.html?hl=ar'>Life Insurance Calculator Script</a></div> <div class='item-snippet'>Life Insurance Calculator Script Life Insurance Monthly/Yearly Premium Payment Calculation Current Age: Premium Payable: Monthly Yearly Fo...</div> </div> <div style='clear: both;'></div> </li> <li> <div class='item-content'> <div class='item-thumbnail'> <a href='https://10randomz.blogspot.com/2021/09/simple-mortgage-loan-calculator-script_19.html?hl=ar' target='_blank'> <img alt='' border='0' height='72' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjQzMmGV0LKbg8JYpreg77mEyuVAgzq1jGZkcASeUZywunZSeeIMsLIRIHMOVwtdu6T9iyzMDX26OT1-_uLrGSIXZwLOel_EdhLfK03VxaG5db4QtMiYgjBxf0PbeZmpKVYS6s8GlUx1WE/s72-c/' width='72'/> </a> </div> <div class='item-title'><a href='https://10randomz.blogspot.com/2021/09/simple-mortgage-loan-calculator-script_19.html?hl=ar'>Simple Mortgage Loan Calculator Script</a></div> <div class='item-snippet'> Loan Amount: Interest Rates: Term(Years): Results: Monthly Payment(EMI): Monthly Average Interest: Monthly Interest: YOUR CONTEN...</div> </div> <div style='clear: both;'></div> </li> <li> <div class='item-content'> <a href='https://10randomz.blogspot.com/2021/09/length-calculator.html?hl=ar' target='_blank'> <img alt='' border='0' height='72px' src='http://3.bp.blogspot.com/-6vKbXbvOUDs/VPeDYUWW10I/AAAAAAAACFQ/NioDlgyEZhs/s1600/11-150x150.jpg' width='72px'/> </a> <div class='item-title'><a href='https://10randomz.blogspot.com/2021/09/length-calculator.html?hl=ar'>Length Calculator</a></div> <div class='item-snippet'>Length calculator inch cm feet kilo Miles {full_page}</div> </div> <div style='clear: both;'></div> </li> <li> <div class='item-content'> <a href='https://10randomz.blogspot.com/2021/09/vehicle-loan-emi-calculator-script_19.html?hl=ar' target='_blank'> <img alt='' border='0' height='72px' src='http://3.bp.blogspot.com/-6vKbXbvOUDs/VPeDYUWW10I/AAAAAAAACFQ/NioDlgyEZhs/s1600/11-150x150.jpg' width='72px'/> </a> <div class='item-title'><a href='https://10randomz.blogspot.com/2021/09/vehicle-loan-emi-calculator-script_19.html?hl=ar'>Vehicle Loan EMI Calculator Script</a></div> <div class='item-snippet'> Vehicle Loan EMI Calculator Script Vehicle Loan EMI Calculator Script Amount (Vehicle Price) Down Payment Annual Interest Rate %...</div> </div> <div style='clear: both;'></div> </li> <li> <div class='item-content'> <a href='https://10randomz.blogspot.com/2025/05/hd-youtube-video-downloader-body.html?hl=ar' target='_blank'> <img alt='' border='0' height='72px' src='http://3.bp.blogspot.com/-6vKbXbvOUDs/VPeDYUWW10I/AAAAAAAACFQ/NioDlgyEZhs/s1600/11-150x150.jpg' width='72px'/> </a> <div class='item-title'><a href='https://10randomz.blogspot.com/2025/05/hd-youtube-video-downloader-body.html?hl=ar'>(بلا عنوان)</a></div> <div class='item-snippet'> HD YouTube Video Downloader HD YouTube Vid...</div> </div> <div style='clear: both;'></div> </li> </ul> <div class='clear'></div> </div> </div><div class='widget HTML' data-version='1' id='HTML111'> <div class='widget-content'><div class='recent-post-cont'><script src='/feeds/posts/default/-/Coupons?orderby=published&alt=json-in-script&callback=labelthumbs'></script></div></div> </div><div class='widget PopularPosts' data-version='1' id='PopularPosts4'> <h2>المشاركات الشائعة</h2> <div class='widget-content popular-posts'> <ul> <li> <div class='item-content'> <div class='item-title'><a href='https://10randomz.blogspot.com/2025/05/enhanced-frame-border-effects-adder-to_9.html?hl=ar'>(بلا عنوان)</a></div> <div class='item-snippet'> Enhanced Frame, Border & Effects Adder to Image Tool </div> </div> <div style='clear: both;'></div> </li> <li> <div class='item-content'> <div class='item-title'><a href='https://10randomz.blogspot.com/2025/05/i-will-update-existing-single-page-app.html?hl=ar'>(بلا عنوان)</a></div> <div class='item-snippet'>I will update the existing single-page app with an option for user to upload an image. This image will be used inside the shape instead of t...</div> </div> <div style='clear: both;'></div> </li> <li> <div class='item-content'> <div class='item-title'><a href='https://10randomz.blogspot.com/2025/05/text-to-shape-converter-import.html?hl=ar'>(بلا عنوان)</a></div> <div class='item-snippet'> Text to Shape Converter Text to Shape Converter Enter Text: Select Shape: Download Image </div> </div> <div style='clear: both;'></div> </li> <li> <div class='item-content'> <div class='item-thumbnail'> <a href='https://10randomz.blogspot.com/2021/09/sum-calculator-script_19.html?hl=ar' target='_blank'> <img alt='' border='0' height='72' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjQzMmGV0LKbg8JYpreg77mEyuVAgzq1jGZkcASeUZywunZSeeIMsLIRIHMOVwtdu6T9iyzMDX26OT1-_uLrGSIXZwLOel_EdhLfK03VxaG5db4QtMiYgjBxf0PbeZmpKVYS6s8GlUx1WE/s72-c/' width='72'/> </a> </div> <div class='item-title'><a href='https://10randomz.blogspot.com/2021/09/sum-calculator-script_19.html?hl=ar'>Sum Calculator Script</a></div> <div class='item-snippet'>Sum of calculator Sum of Series in Javascript Choose Sequences (K) = Σ k k^2 k^3 2k-1 k(k+1) 1 / k(k+1) k(k+1)(k+2) 1 / k(k+1)(k+2) Number o...</div> </div> <div style='clear: both;'></div> </li> <li> <div class='item-content'> <div class='item-title'><a href='https://10randomz.blogspot.com/2021/09/prime-number-calculator.html?hl=ar'>Prime Number Calculator</a></div> <div class='item-snippet'>&copy </div> </div> <div style='clear: both;'></div> </li> <li> <div class='item-content'> <div class='item-title'><a href='https://10randomz.blogspot.com/2021/09/life-insurance-calculator-script_19.html?hl=ar'>Life Insurance Calculator Script</a></div> <div class='item-snippet'>Life Insurance Calculator Script Life Insurance Monthly/Yearly Premium Payment Calculation Current Age: Premium Payable: Monthly Yearly Fo...</div> </div> <div style='clear: both;'></div> </li> <li> <div class='item-content'> <div class='item-thumbnail'> <a href='https://10randomz.blogspot.com/2021/09/simple-mortgage-loan-calculator-script_19.html?hl=ar' target='_blank'> <img alt='' border='0' height='72' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjQzMmGV0LKbg8JYpreg77mEyuVAgzq1jGZkcASeUZywunZSeeIMsLIRIHMOVwtdu6T9iyzMDX26OT1-_uLrGSIXZwLOel_EdhLfK03VxaG5db4QtMiYgjBxf0PbeZmpKVYS6s8GlUx1WE/s72-c/' width='72'/> </a> </div> <div class='item-title'><a href='https://10randomz.blogspot.com/2021/09/simple-mortgage-loan-calculator-script_19.html?hl=ar'>Simple Mortgage Loan Calculator Script</a></div> <div class='item-snippet'> Loan Amount: Interest Rates: Term(Years): Results: Monthly Payment(EMI): Monthly Average Interest: Monthly Interest: YOUR CONTEN...</div> </div> <div style='clear: both;'></div> </li> <li> <div class='item-content'> <div class='item-title'><a href='https://10randomz.blogspot.com/2021/09/length-calculator.html?hl=ar'>Length Calculator</a></div> <div class='item-snippet'>Length calculator inch cm feet kilo Miles {full_page}</div> </div> <div style='clear: both;'></div> </li> <li> <div class='item-content'> <div class='item-title'><a href='https://10randomz.blogspot.com/2021/09/vehicle-loan-emi-calculator-script_19.html?hl=ar'>Vehicle Loan EMI Calculator Script</a></div> <div class='item-snippet'> Vehicle Loan EMI Calculator Script Vehicle Loan EMI Calculator Script Amount (Vehicle Price) Down Payment Annual Interest Rate %...</div> </div> <div style='clear: both;'></div> </li> <li> <div class='item-content'> <div class='item-title'><a href='https://10randomz.blogspot.com/2025/05/hd-youtube-video-downloader-body.html?hl=ar'>(بلا عنوان)</a></div> <div class='item-snippet'> HD YouTube Video Downloader HD YouTube Vid...</div> </div> <div style='clear: both;'></div> </li> </ul> <div class='clear'></div> </div> </div><div class='widget HTML' data-version='1' id='HTML112'> <h2 class='title'>Welcome To SoraBook</h2> <div class='widget-content'> </div> <div class='clear'></div> </div></div> <div style='clear: both;'></div> <div class='sidetabs' id='sidetabs'> <ul class='menu-tab'> <li class='item-1'><a href='#tabside1'></a></li> <li class='item-2'><a href='#tabside2'></a></li> </ul> <div class='sidebar featured-widget section' id='tabside1' name='Tab 01'><div class='widget HTML' data-version='1' id='HTML1'> <h2 class='title'>Recent</h2> <div class='widget-content'> </div> </div></div> <div class='sidebar featured-widget section' id='tabside2' name='Tab 02'><div class='widget HTML' data-version='1' id='HTML2'> <h2 class='title'>Featured</h2> <div class='widget-content'> recent/hot-posts </div> </div><div class='widget HTML' data-version='1' id='HTML86'> <h2 class='title'>Recent</h2> <div class='widget-content'> </div> <div class='clear'></div> </div></div> </div> <div style='clear: both;'></div> <div class='sidebar section' id='sidebar2'><div class='widget PopularPosts' data-version='1' id='PopularPosts1'> <h2>Popular</h2> <div class='widget-content popular-posts'> <ul> <li> <div class='item-content'> <div class='item-title'><a href='https://10randomz.blogspot.com/2025/05/enhanced-frame-border-effects-adder-to_9.html?hl=ar'>(بلا عنوان)</a></div> <div class='item-snippet'> Enhanced Frame, Border & Effects Adder to Image Tool </div> </div> <div style='clear: both;'></div> </li> <li> <div class='item-content'> <div class='item-title'><a href='https://10randomz.blogspot.com/2025/05/i-will-update-existing-single-page-app.html?hl=ar'>(بلا عنوان)</a></div> <div class='item-snippet'>I will update the existing single-page app with an option for user to upload an image. This image will be used inside the shape instead of t...</div> </div> <div style='clear: both;'></div> </li> <li> <div class='item-content'> <div class='item-title'><a href='https://10randomz.blogspot.com/2025/05/text-to-shape-converter-import.html?hl=ar'>(بلا عنوان)</a></div> <div class='item-snippet'> Text to Shape Converter Text to Shape Converter Enter Text: Select Shape: Download Image </div> </div> <div style='clear: both;'></div> </li> <li> <div class='item-content'> <div class='item-thumbnail'> <a href='https://10randomz.blogspot.com/2021/09/sum-calculator-script_19.html?hl=ar'> <img alt='Sum Calculator Script' border='0' height='72' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjQzMmGV0LKbg8JYpreg77mEyuVAgzq1jGZkcASeUZywunZSeeIMsLIRIHMOVwtdu6T9iyzMDX26OT1-_uLrGSIXZwLOel_EdhLfK03VxaG5db4QtMiYgjBxf0PbeZmpKVYS6s8GlUx1WE/s72-c/' width='72'/> </a> </div> <div class='item-title'><a href='https://10randomz.blogspot.com/2021/09/sum-calculator-script_19.html?hl=ar'>Sum Calculator Script</a></div> <div class='item-snippet'>Sum of calculator Sum of Series in Javascript Choose Sequences (K) = Σ k k^2 k^3 2k-1 k(k+1) 1 / k(k+1) k(k+1)(k+2) 1 / k(k+1)(k+2) Number o...</div> </div> <div style='clear: both;'></div> </li> <li> <div class='item-content'> <div class='item-title'><a href='https://10randomz.blogspot.com/2021/09/prime-number-calculator.html?hl=ar'>Prime Number Calculator</a></div> <div class='item-snippet'>&copy </div> </div> <div style='clear: both;'></div> </li> </ul> </div> </div><div class='widget Label' data-version='1' id='Label1'> <h2>Tags</h2> <div class='widget-content cloud-label-widget-content'> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/About%20Us%20Page%20For%20Blogger?hl=ar'>About Us Page For Blogger</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/About%20Us%20Page%20Generator%20For%20Blogger?hl=ar'>About Us Page Generator For Blogger</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/add%20code%20in%20blogger%20post?hl=ar'>add code in blogger post</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Advance%20Keyword%20Research%20Free%20Tool?hl=ar'>Advance Keyword Research Free Tool</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Affiliate%20Link%20Disclosure?hl=ar'>Affiliate Link Disclosure</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Affiliate%20Link%20Disclosure%20Online?hl=ar'>Affiliate Link Disclosure Online</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Affiliate%20Link%20Disclosure%20Page%20Generator%20for%20Bloggers?hl=ar'>Affiliate Link Disclosure Page Generator for Bloggers</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/age%20calculator?hl=ar'>age calculator</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/All%20Format%20YouTube%20Video%20Downloader?hl=ar'>All Format YouTube Video Downloader</a> </span> <span class='label-size label-size-4'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/All%20in%20one%20Blogger%20Tools?hl=ar'>All in one Blogger Tools</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Amazon%20Disclosure?hl=ar'>Amazon Disclosure</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/baby%20age%20calculator?hl=ar'>baby age calculator</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/bank%20detail%20finder?hl=ar'>bank detail finder</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Bank%20IFSC%20Code%20Detail%20Finder%20Tool?hl=ar'>Bank IFSC Code Detail Finder Tool</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/best%20free%20logo%20maker?hl=ar'>best free logo maker</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/best%20online%20logo%20maker?hl=ar'>best online logo maker</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/best%20website%20speed%20test?hl=ar'>best website speed test</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/best%20youtube%20video%20downloader?hl=ar'>best youtube video downloader</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Blog%20or%20Website?hl=ar'>Blog or Website</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Blogger%20About%20us%20Page%20Online?hl=ar'>Blogger About us Page Online</a> </span> <span class='label-size label-size-1'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Blogger%20disclaimer%20generator?hl=ar'>Blogger disclaimer generator</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Blogger%20Sitemap?hl=ar'>Blogger Sitemap</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Blogger%20Sitemap%20Generator?hl=ar'>Blogger Sitemap Generator</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Blogger%20Terms%20%26%20Conditions%20Generator?hl=ar'>Blogger Terms & Conditions Generator</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Blogger%20Tutorials?hl=ar'>Blogger Tutorials</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/calculate%20age%20online?hl=ar'>calculate age online</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/calculator?hl=ar'>calculator</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/calligraphy%20font%20generator?hl=ar'>calligraphy font generator</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/code%20snippets%20for%20blog?hl=ar'>code snippets for blog</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/convert%20jpg%20to%20webp?hl=ar'>convert jpg to webp</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/cool%20fancy%20text%20generator?hl=ar'>cool fancy text generator</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/crazy%20text%20generator?hl=ar'>crazy text generator</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/CSS%20Gradient%20Color%20Generator%20Tool?hl=ar'>CSS Gradient Color Generator Tool</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/direct%20download%20link?hl=ar'>direct download link</a> </span> <span class='label-size label-size-1'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Disclaimer%20generator%20for%20blogger?hl=ar'>Disclaimer generator for blogger</a> </span> <span class='label-size label-size-1'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Disclaimer%20Generator%20For%20Blogger%20Online?hl=ar'>Disclaimer Generator For Blogger Online</a> </span> <span class='label-size label-size-1'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Disclaimer%20page%20for%20blog?hl=ar'>Disclaimer page for blog</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/display%20code%20in%20blogger?hl=ar'>display code in blogger</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/docs%20voice%20typing?hl=ar'>docs voice typing</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/download%20free%20youtube%20videos%20online?hl=ar'>download free youtube videos online</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/download%20instagram%20videos?hl=ar'>download instagram videos</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/embed%20code%20generator?hl=ar'>embed code generator</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/facebook%20video%20downloader?hl=ar'>facebook video downloader</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/facebook%20video%20downloader%20hd?hl=ar'>facebook video downloader hd</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/facebook%20video%20downloader%20online?hl=ar'>facebook video downloader online</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/fancy%20text%20generator?hl=ar'>fancy text generator</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/fancy%20text%20generator%20for%20instagram?hl=ar'>fancy text generator for instagram</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/fancy%20text%20symbols?hl=ar'>fancy text symbols</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/favicon%20creator?hl=ar'>favicon creator</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/favicon%20maker?hl=ar'>favicon maker</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/free%20calculator?hl=ar'>free calculator</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Free%20Facebook%20Video%20Downloader%20Online?hl=ar'>Free Facebook Video Downloader Online</a> </span> <span class='label-size label-size-3'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Free%20Keyword%20Finder?hl=ar'>Free Keyword Finder</a> </span> <span class='label-size label-size-3'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Free%20Keyword%20Generator%20Tool?hl=ar'>Free Keyword Generator Tool</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Free%20Keyword%20Tool?hl=ar'>Free Keyword Tool</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/free%20logo%20maker?hl=ar'>free logo maker</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Free%20Meta%20Tags?hl=ar'>Free Meta Tags</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/free%20online%20logo%20maker%20and%20download?hl=ar'>free online logo maker and download</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Free%20Online%20Meta%20Tag%20Generator?hl=ar'>Free Online Meta Tag Generator</a> </span> <span class='label-size label-size-3'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Free%20SEO%20Tools?hl=ar'>Free SEO Tools</a> </span> <span class='label-size label-size-5'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Free%20Tools?hl=ar'>Free Tools</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Free%20Twitter%20Video%20Download%20Tool?hl=ar'>Free Twitter Video Download Tool</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/free%20video%20downloader?hl=ar'>free video downloader</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Free%20voice%20typing%20keyboard?hl=ar'>Free voice typing keyboard</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Free%20word%20counter?hl=ar'>Free word counter</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Free%20YT%20video%20downloader?hl=ar'>Free YT video downloader</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Generate%20Meta%20Tags%20Online?hl=ar'>Generate Meta Tags Online</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Generate%20Online%20Affiliate%20Link%20Disclosure?hl=ar'>Generate Online Affiliate Link Disclosure</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/generate%20QR%20code?hl=ar'>generate QR code</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Gif%20to%20WebP?hl=ar'>Gif to WebP</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/google%20drive%20direct%20download%20link?hl=ar'>google drive direct download link</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Google%20Drive%20Direct%20Download%20Link%20Generator?hl=ar'>Google Drive Direct Download Link Generator</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/google%20drive%20direct%20link%20online?hl=ar'>google drive direct link online</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/google%20drive%20link?hl=ar'>google drive link</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/google%20drive%20video%20downloader%20online?hl=ar'>google drive video downloader online</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/google%20website%20speed%20test?hl=ar'>google website speed test</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/gradient%20color%20css?hl=ar'>gradient color css</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/gradient%20color%20palette?hl=ar'>gradient color palette</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/gradient%20image%20generator?hl=ar'>gradient image generator</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/hd%20twitter%20video?hl=ar'>hd twitter video</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/HTML%20Sitemap?hl=ar'>HTML Sitemap</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/HTML%20Sitemap%20Generator%20For%20Blogger?hl=ar'>HTML Sitemap Generator For Blogger</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/HTML%20Sitemap%20Generator%20For%20Blogger%20Online?hl=ar'>HTML Sitemap Generator For Blogger Online</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/HTML%20to%20XML%20Parser%20Code%20Converter?hl=ar'>HTML to XML Parser Code Converter</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/iframe%20generator%202021?hl=ar'>iframe generator 2021</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/iFrame%20Generator%20Free%20Online%20Tool?hl=ar'>iFrame Generator Free Online Tool</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/iframe%20layout%20generator?hl=ar'>iframe layout generator</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/India%20bank%20detail%20finder?hl=ar'>India bank detail finder</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/instagram%20iframe%20generator?hl=ar'>instagram iframe generator</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Instagram%20Image%20%26%20Video%20Download%20Tool?hl=ar'>Instagram Image & Video Download Tool</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/instagram%20image%20downloader?hl=ar'>instagram image downloader</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/instagram%20video%20downloader?hl=ar'>instagram video downloader</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Instant%20QR%20code?hl=ar'>Instant QR code</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/jpg%20to%20webp%20bulk%20converter?hl=ar'>jpg to webp bulk converter</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Keyword%20Finder?hl=ar'>Keyword Finder</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/keyword%20finder%20tool?hl=ar'>keyword finder tool</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Keyword%20Generator?hl=ar'>Keyword Generator</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Linear-gradient%20CSS?hl=ar'>Linear-gradient CSS</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/logo%20creator?hl=ar'>logo creator</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Make%20About%20Us%20Page?hl=ar'>Make About Us Page</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Meta%20Tag%20Generator%20Free%20Tool?hl=ar'>Meta Tag Generator Free Tool</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Meta%20Tag%20Generator%20Tool?hl=ar'>Meta Tag Generator Tool</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Meta%20Tags?hl=ar'>Meta Tags</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/mobile%20website%20speed%20test?hl=ar'>mobile website speed test</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/mpr%20yt%20video%20download?hl=ar'>mpr yt video download</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Online%20About%20Page%20Generator?hl=ar'>Online About Page Generator</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/online%20age%20calculator?hl=ar'>online age calculator</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/online%20calculator?hl=ar'>online calculator</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Online%20Calculator%20For%20Calculate%20Instantly?hl=ar'>Online Calculator For Calculate Instantly</a> </span> <span class='label-size label-size-1'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Online%20disclaimer%20generator?hl=ar'>Online disclaimer generator</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/online%20favicon%20maker?hl=ar'>online favicon maker</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Online%20Free%20HTML%20Sitemap%20Generator%20For%20Blogger?hl=ar'>Online Free HTML Sitemap Generator For Blogger</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Online%20HTML%20to%20XML%20Parser%20Code%20Converter?hl=ar'>Online HTML to XML Parser Code Converter</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/online%20instagram%20download%20video?hl=ar'>online instagram download video</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/online%20keyword%20finder?hl=ar'>online keyword finder</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/online%20logo%20maker?hl=ar'>online logo maker</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/online%20parsed%20tool%20script%20for%20blogger?hl=ar'>online parsed tool script for blogger</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/online%20parser%20generator?hl=ar'>online parser generator</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/online%20parser%20xml?hl=ar'>online parser xml</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Online%20Privacy%20Policy%20Generator?hl=ar'>Online Privacy Policy Generator</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Online%20Sitemap%20For%20Blogger?hl=ar'>Online Sitemap For Blogger</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Online%20word%20counter?hl=ar'>Online word counter</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/online%20yt%20video%20download?hl=ar'>online yt video download</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Percentage%20Calculator%20%20Online%20Free%20Tool?hl=ar'>Percentage Calculator Online Free Tool</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/percentage%20calculator%20formula?hl=ar'>percentage calculator formula</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/percentage%20calculator%20in%20excel?hl=ar'>percentage calculator in excel</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/percentage%20calculator%20online?hl=ar'>percentage calculator online</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/percentage%20calculator%20tool?hl=ar'>percentage calculator tool</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/person%20age%20calculator?hl=ar'>person age calculator</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/PNG%20to%20WebP?hl=ar'>PNG to WebP</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Privacy%20Policy%20For%20Blog?hl=ar'>Privacy Policy For Blog</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Privacy%20Policy%20Generator%20For%20Business?hl=ar'>Privacy Policy Generator For Business</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Privacy%20Policy%20Generator%20Tool?hl=ar'>Privacy Policy Generator Tool</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Privacy%20Policy%20Maker?hl=ar'>Privacy Policy Maker</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Privacy%20Policy%20Maker%20Tool?hl=ar'>Privacy Policy Maker Tool</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/private%20facebook%20video%20downloader?hl=ar'>private facebook video downloader</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/QR%20Code%20Generator%20Tool?hl=ar'>QR Code Generator Tool</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/QR%20code%20help?hl=ar'>QR code help</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/QR%20code%20online?hl=ar'>QR code online</a> </span> <span class='label-size label-size-1'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/rainbow%20font%20word?hl=ar'>rainbow font word</a> </span> <span class='label-size label-size-1'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/rainbow%20text%20css?hl=ar'>rainbow text css</a> </span> <span class='label-size label-size-1'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/rainbow%20text%20generator?hl=ar'>rainbow text generator</a> </span> <span class='label-size label-size-1'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Rainbow%20Text%20Generator%20Online%20Tool?hl=ar'>Rainbow Text Generator Online Tool</a> </span> <span class='label-size label-size-1'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/rainbow%20text%20gif?hl=ar'>rainbow text gif</a> </span> <span class='label-size label-size-1'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/rainbow%20text%20html?hl=ar'>rainbow text html</a> </span> <span class='label-size label-size-1'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/rainbow%20text%20instagram?hl=ar'>rainbow text instagram</a> </span> <span class='label-size label-size-1'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/rainbow%20text%20symbol?hl=ar'>rainbow text symbol</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/responsive%20iframe%20code?hl=ar'>responsive iframe code</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/simple%20calculator?hl=ar'>simple calculator</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/source%20code%20beautifier?hl=ar'>source code beautifier</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/source%20code%20for%20blogging?hl=ar'>source code for blogging</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/source%20code%20formatter%20for%20blogger?hl=ar'>source code formatter for blogger</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/stylish%20text%20generator?hl=ar'>stylish text generator</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/syntax%20highlighter?hl=ar'>syntax highlighter</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Terms%20%26%20Conditions%20for%20Blogger?hl=ar'>Terms & Conditions for Blogger</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Terms%20%26%20Conditions%20Generator%20Tool?hl=ar'>Terms & Conditions Generator Tool</a> </span> <span class='label-size label-size-1'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/text%20color%20code?hl=ar'>text color code</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Text%20color%20gradient%20CSS?hl=ar'>Text color gradient CSS</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/text%20color%20gradient%20css%20generator?hl=ar'>text color gradient css generator</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/thumbnail%20download%20for%20pc?hl=ar'>thumbnail download for pc</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/TIP%20Calculator%20Online%20Tool?hl=ar'>TIP Calculator Online Tool</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/twitter%20downloader?hl=ar'>twitter downloader</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/twitter%20video%20downloader%20apk?hl=ar'>twitter video downloader apk</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/twitter%20video%20downloader%20app?hl=ar'>twitter video downloader app</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/twitter%20video%20downloader%20hd?hl=ar'>twitter video downloader hd</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/video%20downloader%20online?hl=ar'>video downloader online</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/voice%20to%20text%20online?hl=ar'>voice to text online</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/voice%20typing%20for%20pc?hl=ar'>voice typing for pc</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/voice%20typing%20in%20ms%20word?hl=ar'>voice typing in ms word</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/voice%20typing%20in%20word?hl=ar'>voice typing in word</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/voice%20typing%20software?hl=ar'>voice typing software</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/WebP%20converter?hl=ar'>WebP converter</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/webp%20converter%20for%20media?hl=ar'>webp converter for media</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/webp%20converter%20free?hl=ar'>webp converter free</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/webp%20converter%20online?hl=ar'>webp converter online</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/WebP%20Image%20Converter%20Online?hl=ar'>WebP Image Converter Online</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Website%20Speed%20Test%20Analyzer?hl=ar'>Website Speed Test Analyzer</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/website%20speed%20test%20free?hl=ar'>website speed test free</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/What%20is%20QR%20code?hl=ar'>What is QR code</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Word%20Count%20Tool?hl=ar'>Word Count Tool</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/word%20counter%20google%20docs?hl=ar'>word counter google docs</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/word%20counter%20ms%20word?hl=ar'>word counter ms word</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Word%20Counter%20Online%20Free%20Tool?hl=ar'>Word Counter Online Free Tool</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Word%20counter%20pages?hl=ar'>Word counter pages</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/word%20counter%20tool%20chrome?hl=ar'>word counter tool chrome</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/wordpress%0Aiframe%20generator%20google%20maps?hl=ar'>wordpress iframe generator google maps</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/xml%20parser%20tool?hl=ar'>xml parser tool</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/XML%20Sitemap?hl=ar'>XML Sitemap</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/XML%20Sitemap%20Generator%20Tool%20For%20Blogger?hl=ar'>XML Sitemap Generator Tool For Blogger</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/xoom%20calculator?hl=ar'>xoom calculator</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Xoom%20Internet%20Advance%20Keyword%20Research%20Free%20Tool?hl=ar'>Xoom Internet Advance Keyword Research Free Tool</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Xoom%20Internet%20Keyword%20Generator%20Tool?hl=ar'>Xoom Internet Keyword Generator Tool</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Xoom%20Internet%20Meta%20Tags%20Generator?hl=ar'>Xoom Internet Meta Tags Generator</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/Xoom%20Voice%20To%20Text%20Generator%20Tool?hl=ar'>Xoom Voice To Text Generator Tool</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/YouTube%20MP3?hl=ar'>YouTube MP3</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/YouTube%20MP3-MP4%20Video%20Converter?hl=ar'>YouTube MP3-MP4 Video Converter</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/youtube%20thumbnail%20downloader?hl=ar'>youtube thumbnail downloader</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/youtube%20thumbnail%20downloader%202021?hl=ar'>youtube thumbnail downloader 2021</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/youtube%20thumbnail%20downloader%20online?hl=ar'>youtube thumbnail downloader online</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/youtube%20thumbnail%20maker?hl=ar'>youtube thumbnail maker</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/youtube%20thumbnail%20size?hl=ar'>youtube thumbnail size</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/YouTube%20Video%20Downloader%20Online?hl=ar'>YouTube Video Downloader Online</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/YouTube%20videos%20online%20downloader?hl=ar'>YouTube videos online downloader</a> </span> <span class='label-size label-size-2'> <a dir='rtl' href='https://10randomz.blogspot.com/search/label/YT%20Video%20Downloader?hl=ar'>YT Video Downloader</a> </span> </div> </div></div> </div> <div style='clear: both;'></div> </div> <!-- end content-wrapper --> <div class='footer-extra'> <div class='social-ico body-row section' id='social-footer' name='Social Footer'><div class='widget LinkList' data-version='1' id='LinkList51'> <div class='widget-content'> <ul> <li><a class='facebook' href='#' target='_blank' title='facebook'><span class='social-item-name'>facebook</span></a></li> <li><a class='twitter' href='#' target='_blank' title='twitter'><span class='social-item-name'>twitter</span></a></li> <li><a class='gplus' href='#' target='_blank' title='gplus'><span class='social-item-name'>gplus</span></a></li> <li><a class='youtube' href='#' target='_blank' title='youtube'><span class='social-item-name'>youtube</span></a></li> <li><a class='pinterest' href='#' target='_blank' title='pinterest'><span class='social-item-name'>pinterest</span></a></li> <li><a class='instagram' href='#' target='_blank' title='instagram'><span class='social-item-name'>instagram</span></a></li> </ul> </div> </div></div> <div style='clear: both;'></div> </div> <div id='ty_footer'> <div class='foot-menu'> <div class='foot-menu section' id='foot-menu' name='Footer Menu Widget'><div class='widget LinkList' data-version='1' id='LinkList920'> <div class='widget-content'> <ul class='menu2' id='nav1' itemscope='' itemtype='http://schema.org/SiteNavigationElement'> <li itemprop='name'><a href='#' itemprop='url'>Home</a></li> <li itemprop='name'><a href='#' itemprop='url'>Shortcodes</a></li> <li itemprop='name'><a href='#' itemprop='url'>About</a></li> <li itemprop='name'><a href='#' itemprop='url'>Contact</a></li> <li itemprop='name'><a href='#' itemprop='url'>404</a></li> </ul> </div> </div></div> </div> <div style='clear:both'></div> <div class='ty_copy-container body-row'> <div class='ty_footer_copyright'> </div> </div> </div> </div> <script type='text/javascript'> //<![CDATA[ $(document).ready(function(){var k=-1,o="",p="";$("#menu").find("ul").find("li").each(function(){for(var text=$(this).text(),url=$(this).find("a").attr("href"),x=0,z=0;z<text.length&&(x=text.indexOf("_",x),-1!=x);z++) x++;if(level=z,level>k&&(o+="<ul>",p+="<ul>"),level<k){offset=k-level;for(var z=0;z<offset;z++)o+="</ul></li>",p+="</ul></li>"} text=text.replace(/_/gi,""),o+="<li><a href='"+url+"'>"+text+"</a>",p+="<li><a href='"+url+"'>";for(var z=0;z<level;z++)p+="";p+=text+"</a>",k=level});for(var x=0;k>=x;x++)o+="</ul>",p+="</ul>",0!=x&&(o+="</li>",p+="</li>");$("#menu .LinkList").html(p),$("#menu > .LinkList > ul").attr("id","nav1"),$("#menu ul > li > ul").parent("li").addClass("parent"),$("#menu .widget").attr("style","display:block!important;");});$(".featured-widget .HTML .widget-content").each(function(){var e=$(this).text();var text_month=[,"Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sept","Oct","Nov","Dec"];var no_image_url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgnMVyd5Reb6444UOMZIvfVG9gEVe1QmIa4Irlf3b_coRdvOKnlnoa1aH9a6PmznBOghsu0aaPU4VOWIsRBON1i3pyDHfoCtuzXTkyVXQPrUKVJaBN69kjtB-SpI4_oKo3QyBiTOddiaAs/s1600/90.jpg";$.ajax(e.match("recent")?{url:"/feeds/posts/default?alt=json-in-script",type:"get",dataType:"jsonp",success:function(){$.ajax({url:"/feeds/posts/default?alt=json-in-script&max-results=5",type:"get",dataType:"jsonp",success:function(e){for(var t="",r="<ul class='rslides'>",a=0;a<e.feed.entry.length;a++){for(var n=0;n<e.feed.entry[a].link.length;n++) if("alternate"==e.feed.entry[a].link[n].rel){t=e.feed.entry[a].link[n].href;break} if("content"in e.feed.entry[a])var summ=e.feed.entry[a].content.$t;else if("summary"in b_rc)var summ=e.feed.entry[a].summary.$t;else var summ="";var content=/<\S[^>]*>/g;summ=summ.replace(content,""),summ.length>120&&(summ=""+summ.substring(0,100)+"...");var s=e.feed.entry[a].title.$t,v=e.feed.entry[a].category[0].term,c=e.feed.entry[a].author[0].name.$t,i=e.feed.entry[a].published.$t,l=i.substring(0,4),o=i.substring(5,7),d=i.substring(8,10),u=text_month[parseInt(o,10)]+" "+d+", "+l,f=e.feed.entry[a].content.$t,p=$("<div>").html(f);if(f.indexOf("http://www.youtube.com/embed/")>-1||f.indexOf("https://www.youtube.com/embed/")>-1)var m=e.feed.entry[a].media$thumbnail.url,b='<a class="feat-thumb" href="'+t+'"><img class="rec-thumb" src="'+m+'"/></a>';else if(f.indexOf("<img")>-1)var g=p.find("img:first").attr("src"),b='<a class="feat-thumb" href="'+t+'"><img class="rec-thumb" src="'+g+'"/></a>';else var b='<a class="feat-thumb" href="'+t+'"><img class="rec-thumb" src="'+no_image_url+'"/>';r+='<li>'+b+'<div class="post-panel"><h3 class="feat-title"><a href="'+t+'">'+s+'</a></h3><span class="recent-date">'+u+'</span><span class="recent-author">'+c+'</span><div class="feat-summ">'+summ+'</div></div></li>'} r+='<div class="clear"/></ul>',$(".featured-widget .HTML .widget-content").each(function(){$(this).text().match("recent")&&($(this).html(r),$(this).find(".feat-thumb .rec-thumb").each(function(){$(this).attr("src",function(e,t){return t.replace("s72-c","s1600")})}))})}})}}:{url:"/feeds/posts/default/-/"+e+"?alt=json-in-script&max-results=5",type:"get",dataType:"jsonp",success:function(e){for(var t="",r="<ul class='rslides'>",a=0;a<e.feed.entry.length;a++){for(var n=0;n<e.feed.entry[a].link.length;n++) if("alternate"==e.feed.entry[a].link[n].rel){t=e.feed.entry[a].link[n].href;break} if("content"in e.feed.entry[a])var summ=e.feed.entry[a].content.$t;else if("summary"in b_rc)var summ=e.feed.entry[a].summary.$t;else var summ="";var content=/<\S[^>]*>/g;summ=summ.replace(content,""),summ.length>120&&(summ=""+summ.substring(0,100)+"...");var s=e.feed.entry[a].title.$t,v=e.feed.entry[a].category[0].term,c=e.feed.entry[a].author[0].name.$t,i=e.feed.entry[a].published.$t,l=i.substring(0,4),o=i.substring(5,7),d=i.substring(8,10),u=text_month[parseInt(o,10)]+" "+d+", "+l,f=e.feed.entry[a].content.$t,p=$("<div>").html(f);if(f.indexOf("http://www.youtube.com/embed/")>-1||f.indexOf("https://www.youtube.com/embed/")>-1)var m=e.feed.entry[a].media$thumbnail.url,b='<a class="feat-thumb" href="'+t+'"><img class="rec-thumb" src="'+m+'"/></a>';else if(f.indexOf("<img")>-1)var g=p.find("img:first").attr("src"),b='<a class="feat-thumb" href="'+t+'"><img class="rec-thumb" src="'+g+'"/></a>';else var b='<a class="feat-thumb" href="'+t+'"><img class="rec-thumb" class="rec-thumb" src="'+no_image_url+'"/></a>';r+='<li>'+b+'<div class="post-panel"><h3 class="feat-title"><a href="'+t+'">'+s+'</a></h3><div class="feat-post-footer"><span class="recent-author">'+c+'</span><span class="other-space"><i class="fa fa-times"></i></span><span class="recent-date">'+u+'</span></div></div></li>'} r+='<div class="clear"/></ul>',$(".featured-widget .HTML .widget-content").each(function(){$(this).html(r),$(this).find(".feat-thumb").closest(".rec-thumb").each(function(){$(this).attr("src",function(e,t){return t.replace("s72-c","s1600")})})})}})});$(document).ready(function(){$('a[name="ad-post"]').before($('#ads-blog').html());$('#ads-blog').html('') $('span[name="author-post"]').before($('.post-author-widget .widget-content').html());$('.post-author-widget .widget-content').html('')});$(document).ready(function(){$(".post-outer,.feat").each(function(){$(this).find(".block-image .thumb a,.primeiro .feat-thumb a").attr("style",function(e,t){return t.replace("/default.jpg","/mqdefault.jpg")}).attr("style",function(e,t){return t.replace("s72-c","s1600")})});});$(document).ready(function(){$('.post h2 a').each(function(){var txt=$(this).text().substr(0,70);var j=txt.lastIndexOf(' ');if(j>10) $(this).text(txt.substr(0,j).replace(/[?,!\.-:;]*$/,''));});$(".post-body img").parent("a").css("margin","0 auto!important");});$(document).ready(function(){var n=$("#sidetabs #tabside1 .widget h2").text();$(".menu-tab .item-1 a").text(n);var u=$("#sidetabs #tabside2 .widget h2").text();$(".menu-tab .item-2 a").text(u);$("#tabside1 .widget h2,#tabside2 .widget h2,#tabside1 .widget-title,#tabside2 .widget-title").remove();$(this).find(".menu-tab li").addClass("hide-tab");$(".sidetabs").tabslet({mouseevent:"click",attribute:"href",animation:true});if(0===$(".sidetabs .widget").length)$(".sidetabs").remove()});$(document).ready(function(){$(".PopularPosts ul li img").attr("src",function($this,img){if(img.match("hqdefault.jpg")){return img.replace("/hqdefault.jpg","/mqdefault.jpg");}else if(img.match("default.jpg")){return img.replace("/default.jpg","/mqdefault.jpg");}else if(img.match("s72-c")){return img.replace("/s72-c","/s1600");}else if(img.match("w72-h72-p-nu")){return img.replace("/w72-h72-p-nu","/s1600");}else if(img.match("w72-h72-p-k-nu")){return img.replace("/w72-h72-p-k-nu","/s1600");}else{return img.replace("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEii84t_XnW-sxceOwPLtDmOcNsH6CeS_bHfbmHNvZ6DcfKlccPdcwCqzspnF075aANYodhp8O8OaykuzExHJyoNrsezCDLW0ucLRtETVGfDrj7EBVa_TWMxZP6jUOfTuMqGnbph0H3jyh8/s1600-r/nth.png",noThumbnail);}});$('.PopularPosts .widget-content ul li').each(function(){var $this=$(this),getPost=$this.find('.item-title a'),postURL=getPost.attr('href');$.ajax({url:postURL,type:"get",success:function(data){var time=$(data).find('.post-meta-time').text(),cat=$(data).find('.post-meta-author').text();getPost.parent().after('<div class="item-meta"><span class="item-author">'+cat+'</span><span class="other-space"><i class="fa fa-times"></i></span><span class="item-date">'+time+'</span></div>');}});});});$(document).ready(function(){$('.menu').slicknav({prependTo:'.menu-mobile',label:''});}); //]]> </script> <script type='text/javascript'> //<![CDATA[ // Tabslet jQuery plugin - http://vdw.staytuned.gr (function($,window,undefined){$.fn.tabslet=function(options){var defaults={mouseevent:"click",attribute:"href",animation:false,autorotate:false,pauseonhover:true,delay:2000,active:1,controls:{prev:".prev",next:".next"}};var options=$.extend(defaults,options);return this.each(function(){var $this=$(this);options.mouseevent=$this.data("mouseevent")||options.mouseevent;options.attribute=$this.data("attribute")||options.attribute;options.animation=$this.data("animation")||options.animation;options.autorotate=$this.data("autorotate")||options.autorotate;options.pauseonhover=$this.data("pauseonhover")||options.pauseonhover;options.delay=$this.data("delay")||options.delay;options.active=$this.data("active")||options.active;$this.find("> div").hide();$this.find("> div").eq(options.active-1).show();$this.find("> ul li").eq(options.active-1).addClass("active");var fn=eval(function(){$(this).trigger("_before");$this.find("> ul li").removeClass("active");$(this).addClass("active");$this.find("> div").hide();var currentTab=$(this).find("a").attr(options.attribute);if(options.animation){$this.find(currentTab).animate({opacity:"show"},"slow",function(){$(this).trigger("_after")})}else{$this.find(currentTab).show();$(this).trigger("_after")}return false});var init=eval("$this.find('> ul li')."+options.mouseevent+"(fn)");init;var elements=$this.find("> ul li"),i=options.active-1;function forward(){i=++i%elements.length;options.mouseevent=="hover"?elements.eq(i).trigger("mouseover"):elements.eq(i).click();var t=setTimeout(forward,options.delay);$this.mouseover(function(){if(options.pauseonhover){clearTimeout(t)}})}if(options.autorotate){setTimeout(forward,0);if(options.pauseonhover){$this.on("mouseleave",function(){setTimeout(forward,1000)})}}function move(direction){if(direction=="forward"){i=++i%elements.length}if(direction=="backward"){i=--i%elements.length}elements.eq(i).click()}$this.find(options.controls.next).click(function(){move("forward")});$this.find(options.controls.prev).click(function(){move("backward")});$this.on("destroy",function(){$(this).removeData()})})};$(document).ready(function(){$('[data-toggle="tabslet"]').tabslet()})})(jQuery); /*! SlickNav Responsive Mobile Menu (c) 2014 Josh Cope licensed under MIT */ ;(function(e,t,n){function o(t,n){this.element=t;this.settings=e.extend({},r,n);this._defaults=r;this._name=i;this.init()}var r={label:"MENU",duplicate:true,duration:200,easingOpen:"swing",easingClose:"swing",closedSymbol:"►",openedSymbol:"▼",prependTo:"body",parentTag:"a",closeOnClick:false,allowParentLinks:false,nestedParentLinks:true,showChildren:false,init:function(){},open:function(){},close:function(){}},i="slicknav",s="slicknav";o.prototype.init=function(){var n=this;var r=e(this.element);var i=this.settings;if(i.duplicate){n.mobileNav=r.clone();n.mobileNav.removeAttr("id");n.mobileNav.find("*").each(function(t,n){e(n).removeAttr("id")})}else n.mobileNav=r;var o=s+"_icon";if(i.label===""){o+=" "+s+"_no-text"}if(i.parentTag=="a"){i.parentTag='a href="#"'}n.mobileNav.attr("class",s+"_nav");var u=e('<div class="'+s+'_menu"></div>');n.btn=e("<"+i.parentTag+' aria-haspopup="true" tabindex="0" class="'+s+"_btn "+s+'_collapsed"><span class="'+s+'_menutxt">'+i.label+'</span><span class="'+o+'"><span class="'+s+'_icon-bar"></span><span class="'+s+'_icon-bar"></span><span class="'+s+'_icon-bar"></span></span></a>');e(u).append(n.btn);e(i.prependTo).prepend(u);u.append(n.mobileNav);var a=n.mobileNav.find("li");e(a).each(function(){var t=e(this);var r={};r.children=t.children("ul").attr("role","menu");t.data("menu",r);if(r.children.length>0){var o=t.contents();var u=false;var a=[];e(o).each(function(){if(!e(this).is("ul")){a.push(this)}else{return false}if(e(this).is("a")){u=true}});var f=e("<"+i.parentTag+' role="menuitem" aria-haspopup="true" tabindex="-1" class="'+s+'_item"/>');if(!i.allowParentLinks||i.nestedParentLinks||!u){var l=e(a).wrapAll(f).parent();l.addClass(s+"_row")}else e(a).wrapAll('<span class="'+s+"_parent-link "+s+'_row"/>').parent();t.addClass(s+"_collapsed");t.addClass(s+"_parent");var c=e('<span class="'+s+'_arrow">'+i.closedSymbol+"</span>");if(i.allowParentLinks&&!i.nestedParentLinks&&u)c=c.wrap(f).parent();e(a).last().after(c)}else if(t.children().length===0){t.addClass(s+"_txtnode")}t.children("a").attr("role","menuitem").click(function(t){if(i.closeOnClick&&!e(t.target).parent().closest("li").hasClass(s+"_parent"))e(n.btn).click()});if(i.closeOnClick&&i.allowParentLinks){t.children("a").children("a").click(function(t){e(n.btn).click()});t.find("."+s+"_parent-link a:not(."+s+"_item)").click(function(t){e(n.btn).click()})}});e(a).each(function(){var t=e(this).data("menu");if(!i.showChildren){n._visibilityToggle(t.children,null,false,null,true)}});n._visibilityToggle(n.mobileNav,null,false,"init",true);n.mobileNav.attr("role","menu");e(t).mousedown(function(){n._outlines(false)});e(t).keyup(function(){n._outlines(true)});e(n.btn).click(function(e){e.preventDefault();n._menuToggle()});n.mobileNav.on("click","."+s+"_item",function(t){t.preventDefault();n._itemClick(e(this))});e(n.btn).keydown(function(e){var t=e||event;if(t.keyCode==13){e.preventDefault();n._menuToggle()}});n.mobileNav.on("keydown","."+s+"_item",function(t){var r=t||event;if(r.keyCode==13){t.preventDefault();n._itemClick(e(t.target))}});if(i.allowParentLinks&&i.nestedParentLinks){e("."+s+"_item a").click(function(e){e.stopImmediatePropagation()})}};o.prototype._menuToggle=function(e){var t=this;var n=t.btn;var r=t.mobileNav;if(n.hasClass(s+"_collapsed")){n.removeClass(s+"_collapsed");n.addClass(s+"_open")}else{n.removeClass(s+"_open");n.addClass(s+"_collapsed")}n.addClass(s+"_animating");t._visibilityToggle(r,n.parent(),true,n)};o.prototype._itemClick=function(e){var t=this;var n=t.settings;var r=e.data("menu");if(!r){r={};r.arrow=e.children("."+s+"_arrow");r.ul=e.next("ul");r.parent=e.parent();if(r.parent.hasClass(s+"_parent-link")){r.parent=e.parent().parent();r.ul=e.parent().next("ul")}e.data("menu",r)}if(r.parent.hasClass(s+"_collapsed")){r.arrow.html(n.openedSymbol);r.parent.removeClass(s+"_collapsed");r.parent.addClass(s+"_open");r.parent.addClass(s+"_animating");t._visibilityToggle(r.ul,r.parent,true,e)}else{r.arrow.html(n.closedSymbol);r.parent.addClass(s+"_collapsed");r.parent.removeClass(s+"_open");r.parent.addClass(s+"_animating");t._visibilityToggle(r.ul,r.parent,true,e)}};o.prototype._visibilityToggle=function(t,n,r,i,o){var u=this;var a=u.settings;var f=u._getActionItems(t);var l=0;if(r)l=a.duration;if(t.hasClass(s+"_hidden")){t.removeClass(s+"_hidden");t.slideDown(l,a.easingOpen,function(){e(i).removeClass(s+"_animating");e(n).removeClass(s+"_animating");if(!o){a.open(i)}});t.attr("aria-hidden","false");f.attr("tabindex","0");u._setVisAttr(t,false)}else{t.addClass(s+"_hidden");t.slideUp(l,this.settings.easingClose,function(){t.attr("aria-hidden","true");f.attr("tabindex","-1");u._setVisAttr(t,true);t.hide();e(i).removeClass(s+"_animating");e(n).removeClass(s+"_animating");if(!o)a.close(i);else if(i=="init")a.init()})}};o.prototype._setVisAttr=function(t,n){var r=this;var i=t.children("li").children("ul").not("."+s+"_hidden");if(!n){i.each(function(){var t=e(this);t.attr("aria-hidden","false");var i=r._getActionItems(t);i.attr("tabindex","0");r._setVisAttr(t,n)})}else{i.each(function(){var t=e(this);t.attr("aria-hidden","true");var i=r._getActionItems(t);i.attr("tabindex","-1");r._setVisAttr(t,n)})}};o.prototype._getActionItems=function(e){var t=e.data("menu");if(!t){t={};var n=e.children("li");var r=n.find("a");t.links=r.add(n.find("."+s+"_item"));e.data("menu",t)}return t.links};o.prototype._outlines=function(t){if(!t){e("."+s+"_item, ."+s+"_btn").css("outline","none")}else{e("."+s+"_item, ."+s+"_btn").css("outline","")}};o.prototype.toggle=function(){var e=this;e._menuToggle()};o.prototype.open=function(){var e=this;if(e.btn.hasClass(s+"_collapsed")){e._menuToggle()}};o.prototype.close=function(){var e=this;if(e.btn.hasClass(s+"_open")){e._menuToggle()}};e.fn[i]=function(t){var n=arguments;if(t===undefined||typeof t==="object"){return this.each(function(){if(!e.data(this,"plugin_"+i)){e.data(this,"plugin_"+i,new o(this,t))}})}else if(typeof t==="string"&&t[0]!=="_"&&t!=="init"){var r;this.each(function(){var s=e.data(this,"plugin_"+i);if(s instanceof o&&typeof s[t]==="function"){r=s[t].apply(s,Array.prototype.slice.call(n,1))}});return r!==undefined?r:this}}})(jQuery,document,window) //]]></script> <!--Page Navigation Ends --> <script type="text/javascript" src="https://www.blogger.com/static/v1/widgets/432983155-widgets.js"></script> <script type='text/javascript'> window['__wavt'] = 'AOuZoY7v0SdPcVF8tvEiKoDXF_z1Lkn_BA:1774090013361';_WidgetManager._Init('//www.blogger.com/rearrange?blogID\x3d572294485534474482','//10randomz.blogspot.com/2025/05/i-will-update-existing-single-page-app.html?hl\x3dar','572294485534474482'); _WidgetManager._SetDataContext([{'name': 'blog', 'data': {'blogId': '572294485534474482', 'title': '10randomz', 'url': 'https://10randomz.blogspot.com/2025/05/i-will-update-existing-single-page-app.html?hl\x3dar', 'canonicalUrl': 'https://10randomz.blogspot.com/2025/05/i-will-update-existing-single-page-app.html', 'homepageUrl': 'https://10randomz.blogspot.com/?hl\x3dar', 'searchUrl': 'https://10randomz.blogspot.com/search', 'canonicalHomepageUrl': 'https://10randomz.blogspot.com/', 'blogspotFaviconUrl': 'https://10randomz.blogspot.com/favicon.ico', 'bloggerUrl': 'https://www.blogger.com', 'hasCustomDomain': false, 'httpsEnabled': true, 'enabledCommentProfileImages': true, 'gPlusViewType': 'FILTERED_POSTMOD', 'adultContent': false, 'analyticsAccountNumber': '', 'encoding': 'UTF-8', 'locale': 'ar', 'localeUnderscoreDelimited': 'ar', 'languageDirection': 'rtl', 'isPrivate': false, 'isMobile': false, 'isMobileRequest': false, 'mobileClass': '', 'isPrivateBlog': false, 'isDynamicViewsAvailable': true, 'feedLinks': '\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x2210randomz - Atom\x22 href\x3d\x22https://10randomz.blogspot.com/feeds/posts/default\x22 /\x3e\n\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/rss+xml\x22 title\x3d\x2210randomz - RSS\x22 href\x3d\x22https://10randomz.blogspot.com/feeds/posts/default?alt\x3drss\x22 /\x3e\n\x3clink rel\x3d\x22service.post\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x2210randomz - Atom\x22 href\x3d\x22https://www.blogger.com/feeds/572294485534474482/posts/default\x22 /\x3e\n\n\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x2210randomz - Atom\x22 href\x3d\x22https://10randomz.blogspot.com/feeds/6269550028740384409/comments/default\x22 /\x3e\n', 'meTag': '', 'adsenseHostId': 'ca-host-pub-1556223355139109', 'adsenseHasAds': false, 'adsenseAutoAds': false, 'boqCommentIframeForm': true, 'loginRedirectParam': '', 'view': '', 'dynamicViewsCommentsSrc': '//www.blogblog.com/dynamicviews/4224c15c4e7c9321/js/comments.js', 'dynamicViewsScriptSrc': '//www.blogblog.com/dynamicviews/5ac9c0fa1f330b04', 'plusOneApiSrc': 'https://apis.google.com/js/platform.js', 'disableGComments': true, 'interstitialAccepted': false, 'sharing': {'platforms': [{'name': '\u0627\u0644\u062d\u0635\u0648\u0644 \u0639\u0644\u0649 \u0627\u0644\u0631\u0627\u0628\u0637', 'key': 'link', 'shareMessage': '\u0627\u0644\u062d\u0635\u0648\u0644 \u0639\u0644\u0649 \u0627\u0644\u0631\u0627\u0628\u0637', 'target': ''}, {'name': 'Facebook', 'key': 'facebook', 'shareMessage': '\u0645\u0634\u0627\u0631\u0643\u0629 \u0625\u0644\u0649 Facebook', 'target': 'facebook'}, {'name': '\u0643\u062a\u0627\u0628\u0629 \u0645\u062f\u0648\u0646\u0629 \u062d\u0648\u0644 \u0647\u0630\u0647 \u0627\u0644\u0645\u0634\u0627\u0631\u0643\u0629', 'key': 'blogThis', 'shareMessage': '\u0643\u062a\u0627\u0628\u0629 \u0645\u062f\u0648\u0646\u0629 \u062d\u0648\u0644 \u0647\u0630\u0647 \u0627\u0644\u0645\u0634\u0627\u0631\u0643\u0629', 'target': 'blog'}, {'name': 'X', 'key': 'twitter', 'shareMessage': '\u0645\u0634\u0627\u0631\u0643\u0629 \u0625\u0644\u0649 X', 'target': 'twitter'}, {'name': 'Pinterest', 'key': 'pinterest', 'shareMessage': '\u0645\u0634\u0627\u0631\u0643\u0629 \u0625\u0644\u0649 Pinterest', 'target': 'pinterest'}, {'name': '\u0628\u0631\u064a\u062f \u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a', 'key': 'email', 'shareMessage': '\u0628\u0631\u064a\u062f \u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a', 'target': 'email'}], 'disableGooglePlus': true, 'googlePlusShareButtonWidth': 0, 'googlePlusBootstrap': '\x3cscript type\x3d\x22text/javascript\x22\x3ewindow.___gcfg \x3d {\x27lang\x27: \x27ar\x27};\x3c/script\x3e'}, 'hasCustomJumpLinkMessage': false, 'jumpLinkMessage': '\u0642\u0631\u0627\u0621\u0629 \u0627\u0644\u0645\u0632\u064a\u062f', 'pageType': 'item', 'postId': '6269550028740384409', 'pageName': '', 'pageTitle': '10randomz'}}, {'name': 'features', 'data': {}}, {'name': 'messages', 'data': {'edit': '\u062a\u0639\u062f\u064a\u0644', 'linkCopiedToClipboard': '\u062a\u0645 \u0646\u0633\u062e \u0627\u0644\u0631\u0627\u0628\u0637 \u0625\u0644\u0649 \u0627\u0644\u062d\u0627\u0641\u0638\u0629', 'ok': '\u062d\u0633\u0646\u064b\u0627', 'postLink': '\u0631\u0627\u0628\u0637 \u0627\u0644\u0645\u0634\u0627\u0631\u0643\u0629'}}, {'name': 'template', 'data': {'name': 'custom', 'localizedName': '\u0645\u062e\u0635\u0635', 'isResponsive': false, 'isAlternateRendering': false, 'isCustom': true}}, {'name': 'view', 'data': {'classic': {'name': 'classic', 'url': '?view\x3dclassic'}, 'flipcard': {'name': 'flipcard', 'url': '?view\x3dflipcard'}, 'magazine': {'name': 'magazine', 'url': '?view\x3dmagazine'}, 'mosaic': {'name': 'mosaic', 'url': '?view\x3dmosaic'}, 'sidebar': {'name': 'sidebar', 'url': '?view\x3dsidebar'}, 'snapshot': {'name': 'snapshot', 'url': '?view\x3dsnapshot'}, 'timeslide': {'name': 'timeslide', 'url': '?view\x3dtimeslide'}, 'isMobile': false, 'title': '10randomz', 'description': 'I will update the existing single-page app with an option for user to upload an image. This image will be used inside the shape instead of t...', 'url': 'https://10randomz.blogspot.com/2025/05/i-will-update-existing-single-page-app.html?hl\x3dar', 'type': 'item', 'isSingleItem': true, 'isMultipleItems': false, 'isError': false, 'isPage': false, 'isPost': true, 'isHomepage': false, 'isArchive': false, 'isLabelSearch': false, 'postId': 6269550028740384409}}]); _WidgetManager._RegisterWidget('_HeaderView', new _WidgetInfo('Header1', 'headerleft', document.getElementById('Header1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LinkListView', new _WidgetInfo('LinkList210', 'menu', document.getElementById('LinkList210'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML9', 'adwidegt1', document.getElementById('HTML9'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML90', 'adwidegt2', document.getElementById('HTML90'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_BlogView', new _WidgetInfo('Blog1', 'main', document.getElementById('Blog1'), {'cmtInteractionsEnabled': false, 'lightboxEnabled': true, 'lightboxModuleUrl': 'https://www.blogger.com/static/v1/jsbin/1660723385-lbx__ar.js', 'lightboxCssUrl': 'https://www.blogger.com/static/v1/v-css/828616780-lightbox_bundle_rtl.css'}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML902', 'main', document.getElementById('HTML902'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML901', 'main', document.getElementById('HTML901'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML10', 'Postwidegt2', document.getElementById('HTML10'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML4', 'sidebar1', document.getElementById('HTML4'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML3', 'sidebar1', document.getElementById('HTML3'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LinkListView', new _WidgetInfo('LinkList940', 'sidebar1', document.getElementById('LinkList940'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML103', 'sidebar1', document.getElementById('HTML103'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML104', 'sidebar1', document.getElementById('HTML104'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_TextListView', new _WidgetInfo('TextList152', 'sidebar1', document.getElementById('TextList152'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML105', 'sidebar1', document.getElementById('HTML105'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML106', 'sidebar1', document.getElementById('HTML106'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML900', 'sidebar1', document.getElementById('HTML900'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML186', 'sidebar1', document.getElementById('HTML186'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LinkListView', new _WidgetInfo('LinkList62', 'sidebar1', document.getElementById('LinkList62'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML100', 'sidebar1', document.getElementById('HTML100'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML101', 'sidebar1', document.getElementById('HTML101'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LinkListView', new _WidgetInfo('LinkList156', 'sidebar1', document.getElementById('LinkList156'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LinkListView', new _WidgetInfo('LinkList154', 'sidebar1', document.getElementById('LinkList154'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LinkListView', new _WidgetInfo('LinkList155', 'sidebar1', document.getElementById('LinkList155'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LinkListView', new _WidgetInfo('LinkList158', 'sidebar1', document.getElementById('LinkList158'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LinkListView', new _WidgetInfo('LinkList159', 'sidebar1', document.getElementById('LinkList159'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML55', 'sidebar1', document.getElementById('HTML55'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LinkListView', new _WidgetInfo('LinkList152', 'sidebar1', document.getElementById('LinkList152'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LinkListView', new _WidgetInfo('LinkList153', 'sidebar1', document.getElementById('LinkList153'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LinkListView', new _WidgetInfo('LinkList151', 'sidebar1', document.getElementById('LinkList151'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LinkListView', new _WidgetInfo('LinkList78', 'sidebar1', document.getElementById('LinkList78'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_TextView', new _WidgetInfo('Text100', 'sidebar1', document.getElementById('Text100'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML851', 'sidebar1', document.getElementById('HTML851'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LinkListView', new _WidgetInfo('LinkList77', 'sidebar1', document.getElementById('LinkList77'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_TextView', new _WidgetInfo('Text99', 'sidebar1', document.getElementById('Text99'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML218', 'sidebar1', document.getElementById('HTML218'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LinkListView', new _WidgetInfo('LinkList70', 'sidebar1', document.getElementById('LinkList70'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML292', 'sidebar1', document.getElementById('HTML292'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML293', 'sidebar1', document.getElementById('HTML293'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LinkListView', new _WidgetInfo('LinkList72', 'sidebar1', document.getElementById('LinkList72'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML294', 'sidebar1', document.getElementById('HTML294'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LinkListView', new _WidgetInfo('LinkList71', 'sidebar1', document.getElementById('LinkList71'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LinkListView', new _WidgetInfo('LinkList74', 'sidebar1', document.getElementById('LinkList74'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML296', 'sidebar1', document.getElementById('HTML296'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LinkListView', new _WidgetInfo('LinkList73', 'sidebar1', document.getElementById('LinkList73'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML297', 'sidebar1', document.getElementById('HTML297'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LinkListView', new _WidgetInfo('LinkList76', 'sidebar1', document.getElementById('LinkList76'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML299', 'sidebar1', document.getElementById('HTML299'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LinkListView', new _WidgetInfo('LinkList75', 'sidebar1', document.getElementById('LinkList75'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML291', 'sidebar1', document.getElementById('HTML291'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_ImageView', new _WidgetInfo('Image100', 'sidebar1', document.getElementById('Image100'), {'resize': false}, 'displayModeFull')); _WidgetManager._RegisterWidget('_TextView', new _WidgetInfo('Text1', 'sidebar1', document.getElementById('Text1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML201', 'sidebar1', document.getElementById('HTML201'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML203', 'sidebar1', document.getElementById('HTML203'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML204', 'sidebar1', document.getElementById('HTML204'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML205', 'sidebar1', document.getElementById('HTML205'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML206', 'sidebar1', document.getElementById('HTML206'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML207', 'sidebar1', document.getElementById('HTML207'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML208', 'sidebar1', document.getElementById('HTML208'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_ContactFormView', new _WidgetInfo('ContactForm1', 'sidebar1', document.getElementById('ContactForm1'), {'contactFormMessageSendingMsg': '\u062c\u0627\u0631\u064d \u0627\u0644\u0625\u0631\u0633\u0627\u0644...', 'contactFormMessageSentMsg': '\u062a\u0645 \u0625\u0631\u0633\u0627\u0644 \u0631\u0633\u0627\u0644\u062a\u0643.', 'contactFormMessageNotSentMsg': '\u062a\u0639\u0630\u0631 \u0625\u0631\u0633\u0627\u0644 \u0627\u0644\u0631\u0633\u0627\u0644\u0629\u060c \u064a\u0631\u062c\u0649 \u0627\u0644\u0645\u062d\u0627\u0648\u0644\u0629 \u0645\u0631\u0629 \u0623\u062e\u0631\u0649 \u0641\u064a \u0648\u0642\u062a \u0644\u0627\u062d\u0642.', 'contactFormInvalidEmailMsg': '\u064a\u0644\u0632\u0645 \u0625\u062f\u062e\u0627\u0644 \u0639\u0646\u0648\u0627\u0646 \u0628\u0631\u064a\u062f \u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a \u0635\u0627\u0644\u062d.', 'contactFormEmptyMessageMsg': '\u0644\u0627 \u064a\u0645\u0643\u0646 \u0623\u0646 \u064a\u0643\u0648\u0646 \u062d\u0642\u0644 \u0627\u0644\u0631\u0633\u0627\u0644\u0629 \u0641\u0627\u0631\u063a\u064b\u0627.', 'title': 'Contact Us', 'blogId': '572294485534474482', 'contactFormNameMsg': '\u0627\u0644\u0627\u0633\u0645', 'contactFormEmailMsg': '\u0628\u0631\u064a\u062f \u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a', 'contactFormMessageMsg': '\u0631\u0633\u0627\u0644\u0629', 'contactFormSendMsg': '\u0625\u0631\u0633\u0627\u0644', 'contactFormToken': 'AOuZoY4lsnS6GzcywcLlENWoEGgXXouFnQ:1774090013361', 'submitUrl': 'https://www.blogger.com/contact-form.do'}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML200', 'sidebar1', document.getElementById('HTML200'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LinkListView', new _WidgetInfo('LinkList86', 'sidebar1', document.getElementById('LinkList86'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LinkListView', new _WidgetInfo('LinkList99', 'sidebar1', document.getElementById('LinkList99'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML150', 'sidebar1', document.getElementById('HTML150'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_ImageView', new _WidgetInfo('Image70', 'sidebar1', document.getElementById('Image70'), {'resize': false}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LinkListView', new _WidgetInfo('LinkList98', 'sidebar1', document.getElementById('LinkList98'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LinkListView', new _WidgetInfo('LinkList101', 'sidebar1', document.getElementById('LinkList101'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LinkListView', new _WidgetInfo('LinkList100', 'sidebar1', document.getElementById('LinkList100'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LinkListView', new _WidgetInfo('LinkList103', 'sidebar1', document.getElementById('LinkList103'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LinkListView', new _WidgetInfo('LinkList104', 'sidebar1', document.getElementById('LinkList104'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_AttributionView', new _WidgetInfo('Attribution1', 'sidebar1', document.getElementById('Attribution1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML20', 'sidebar1', document.getElementById('HTML20'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML21', 'sidebar1', document.getElementById('HTML21'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML22', 'sidebar1', document.getElementById('HTML22'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML23', 'sidebar1', document.getElementById('HTML23'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML24', 'sidebar1', document.getElementById('HTML24'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML25', 'sidebar1', document.getElementById('HTML25'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_TextListView', new _WidgetInfo('TextList1', 'sidebar1', document.getElementById('TextList1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML26', 'sidebar1', document.getElementById('HTML26'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LinkListView', new _WidgetInfo('LinkList23', 'sidebar1', document.getElementById('LinkList23'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML28', 'sidebar1', document.getElementById('HTML28'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LinkListView', new _WidgetInfo('LinkList20', 'sidebar1', document.getElementById('LinkList20'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LinkListView', new _WidgetInfo('LinkList110', 'sidebar1', document.getElementById('LinkList110'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML92', 'sidebar1', document.getElementById('HTML92'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_BlogSearchView', new _WidgetInfo('BlogSearch1', 'sidebar1', document.getElementById('BlogSearch1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML95', 'sidebar1', document.getElementById('HTML95'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_BlogArchiveView', new _WidgetInfo('BlogArchive1', 'sidebar1', document.getElementById('BlogArchive1'), {'languageDirection': 'rtl', 'loadingMessage': '\u200f\u062c\u0627\u0631\u064d \u0627\u0644\u062a\u062d\u0645\u064a\u0644\x26hellip;'}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LinkListView', new _WidgetInfo('LinkList236', 'sidebar1', document.getElementById('LinkList236'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML98', 'sidebar1', document.getElementById('HTML98'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_TextView', new _WidgetInfo('Text150', 'sidebar1', document.getElementById('Text150'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML11', 'sidebar1', document.getElementById('HTML11'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML12', 'sidebar1', document.getElementById('HTML12'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LinkListView', new _WidgetInfo('LinkList230', 'sidebar1', document.getElementById('LinkList230'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML13', 'sidebar1', document.getElementById('HTML13'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML14', 'sidebar1', document.getElementById('HTML14'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML15', 'sidebar1', document.getElementById('HTML15'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML16', 'sidebar1', document.getElementById('HTML16'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML17', 'sidebar1', document.getElementById('HTML17'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML18', 'sidebar1', document.getElementById('HTML18'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML19', 'sidebar1', document.getElementById('HTML19'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML41', 'sidebar1', document.getElementById('HTML41'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML42', 'sidebar1', document.getElementById('HTML42'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LinkListView', new _WidgetInfo('LinkList1', 'sidebar1', document.getElementById('LinkList1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LinkListView', new _WidgetInfo('LinkList3', 'sidebar1', document.getElementById('LinkList3'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LinkListView', new _WidgetInfo('LinkList4', 'sidebar1', document.getElementById('LinkList4'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LinkListView', new _WidgetInfo('LinkList7', 'sidebar1', document.getElementById('LinkList7'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML920', 'sidebar1', document.getElementById('HTML920'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LabelView', new _WidgetInfo('Label4', 'sidebar1', document.getElementById('Label4'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML30', 'sidebar1', document.getElementById('HTML30'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_ImageView', new _WidgetInfo('Image1', 'sidebar1', document.getElementById('Image1'), {'resize': false}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LabelView', new _WidgetInfo('Label3', 'sidebar1', document.getElementById('Label3'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LabelView', new _WidgetInfo('Label2', 'sidebar1', document.getElementById('Label2'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML33', 'sidebar1', document.getElementById('HTML33'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_ImageView', new _WidgetInfo('Image150', 'sidebar1', document.getElementById('Image150'), {'resize': false}, 'displayModeFull')); _WidgetManager._RegisterWidget('_ImageView', new _WidgetInfo('Image151', 'sidebar1', document.getElementById('Image151'), {'resize': false}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LinkListView', new _WidgetInfo('LinkList250', 'sidebar1', document.getElementById('LinkList250'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML8', 'sidebar1', document.getElementById('HTML8'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LinkListView', new _WidgetInfo('LinkList8', 'sidebar1', document.getElementById('LinkList8'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML7', 'sidebar1', document.getElementById('HTML7'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_PageListView', new _WidgetInfo('PageList1', 'sidebar1', document.getElementById('PageList1'), {'title': 'Pages', 'links': [{'isCurrentPage': false, 'href': 'https://10randomz.blogspot.com/?hl\x3dar', 'title': 'Home'}], 'mobile': false, 'showPlaceholder': true, 'hasCurrentPage': false}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML910', 'sidebar1', document.getElementById('HTML910'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML6', 'sidebar1', document.getElementById('HTML6'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML911', 'sidebar1', document.getElementById('HTML911'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML5', 'sidebar1', document.getElementById('HTML5'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_PageListView', new _WidgetInfo('PageList5', 'sidebar1', document.getElementById('PageList5'), {'title': 'Menu', 'links': [{'isCurrentPage': false, 'href': 'https://10randomz.blogspot.com/?hl\x3dar', 'title': 'Home'}], 'mobile': false, 'showPlaceholder': true, 'hasCurrentPage': false}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LinkListView', new _WidgetInfo('LinkList50', 'sidebar1', document.getElementById('LinkList50'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_PopularPostsView', new _WidgetInfo('PopularPosts2', 'sidebar1', document.getElementById('PopularPosts2'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_PopularPostsView', new _WidgetInfo('PopularPosts3', 'sidebar1', document.getElementById('PopularPosts3'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML111', 'sidebar1', document.getElementById('HTML111'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_PopularPostsView', new _WidgetInfo('PopularPosts4', 'sidebar1', document.getElementById('PopularPosts4'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML112', 'sidebar1', document.getElementById('HTML112'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML1', 'tabside1', document.getElementById('HTML1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML2', 'tabside2', document.getElementById('HTML2'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML86', 'tabside2', document.getElementById('HTML86'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_PopularPostsView', new _WidgetInfo('PopularPosts1', 'sidebar2', document.getElementById('PopularPosts1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LabelView', new _WidgetInfo('Label1', 'sidebar2', document.getElementById('Label1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LinkListView', new _WidgetInfo('LinkList51', 'social-footer', document.getElementById('LinkList51'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LinkListView', new _WidgetInfo('LinkList920', 'foot-menu', document.getElementById('LinkList920'), {}, 'displayModeFull')); </script> </body> </html>