CSS Glow Text Generator - Online Neon & Outrun Style
Create glowing, neonâstyle text effects with multiple textâshadows. Adjust colors and intensity. Copy the CSS.
UD5 Toolkit
Create retro scrolling text with HTML <marquee> tag or modern CSS animations. Live preview, instant code copy.
<marquee> is deprecated, but still works in most browsers.
<marquee direction="left" behavior="scroll" scrollamount="6" loop="infinite" bgcolor="#000000" style="color:#ff6600; font-size:24px;">Welcome to the 90's! đ</marquee>
The <marquee> tag is obsolete. Use this pure CSS scroll animation for modern websites.
<div class="marquee-css">Welcome to the 90's! đ</div>
<style>
.marquee-css {
white-space: nowrap;
overflow: hidden;
box-sizing: border-box;
animation: marquee 8s linear infinite;
color: #ff6600;
background: #000000;
font-size: 24px;
padding: 10px 0;
}
@keyframes marquee {
0% { text-indent: 100%; }
100% { text-indent: -100%; }
}
</style>
<marquee> tag is a non-standard HTML element used to create scrolling text or images horizontally or vertically. It was popular in the 1990s for creating retro animated effects but is now deprecated in HTML5. Despite that, most browsers still support it for backward compatibility.scrollamount attribute (pixels per movement) or scrolldelay (milliseconds between movements). In the CSS alternative, adjust the animation-duration propertyâlower values (e.g., 5s) mean faster scrolling, higher values (15s) slower.behavior="alternate" in the marquee tag. For CSS, use animation-direction: alternate; to bounce the text.Create glowing, neonâstyle text effects with multiple textâshadows. Adjust colors and intensity. Copy the CSS.
Paste lines of text and automatically convert to an HTML ordered list with correct numbering and indentation.
Transform regular text into the mocking SpongeBobâstyle alternating case. Copy and paste for hilarious effect.
Write Q&A in a simple format and export as a CSV file compatible with Anki. Perfect for rapid card creation. Local.
Take a list of items and reverse the line order. The first becomes last. Simple and quick.
Set up firstâline indentation and hanging punctuation. See how they affect reading flow. Copy the CSS.
Format a list of Q&A pairs and export as a CSV ready for Anki import. Simple lineâbased template. Local.
Create scary, glitched text using combining diacritical marks. Control intensity. Perfect for horror memes and fun. Pure Unicode magic in browser.
Enter a name or word and generate an acrostic poem where each line starts with a letter of the word. Personalized fun.
Create a strong yet easyâtoâremember passphrase from random common words. Combines 4â6 words. Fully offline. XKCD compliant.
Paste plain text and turn it into a nested outline using indent levels or Markdown headings. Great for planning.
Generate a pseudoâbusiness name with a ridiculous tagline. Perfect for placeholder or humor.
Create printable sight word flashcards from Dolch or Fry lists by grade level. Choose font size and card layout. Local only.
Click a letter and watch an animated stroke order for print or cursive. Good for kids learning to write.
Convert any text into JavaScriptâstyle \uXXXX escape sequences and vice versa. Handles emojis. Useful for i18n development.
Paste words with translations, shuffle, test yourself. Simple local spaced recognition.
Choose a font family and see how it renders famous pangrams (The quick brown foxâŚ). Instant web font loader.
Sort hundreds of lines alphabetically, reverse alphabetically, or by length. Deduplicate option. All local.
Enter a list of buzzwords or concepts and shuffle them into random pairs. Stimulate creative thinking. All local.
Paste an enciphered text and instantly see all 25 possible shifts. Highlight the most plausible.
Enter initials (e.g., NASA) and get possible expansions. For creative naming or organizational jokes.
Normalize text to any Unicode normalization form to prevent encoding bugs and ensure consistent comparison. Essential for i18n developers.
Enter text and see each character's 8âbit binary laid out in a blackâandâwhite grid. Beautiful data art. Local.
Check English spelling and get suggestions using the browser's built-in dictionary. Highlight errors instantly. No data leaves your machine.
See how grid-auto-flow: row vs column changes item placement. Add and remove items to understand the algorithm. Visual.
Sort lines of text alphabetically, numerically, or by length. Reverse order supported. Perfect for organizing lists and data sets with complete privacy.
Paste prose and reformat so that each sentence starts on a new line. Helps with version control diffs.
Select a heading font and get recommended body font pairings. Live preview with sample text. Copy the CSS import links.
Enter terms and definitions and generate a clean `<dl>` HTML snippet. Great for glossaries and FAQs.
Type a simple sentence and see a rudimentary ReedâKellogg diagram. Educational.