HTML
- Looking for a HTML4 editor.
Right now, I would like a easy editor that allows me to not worry about HTML4 syntax, and simply adjust the rendered text, while I can see the HTML source code.
The reason I need something like this is that I sometimes do make note() in G'MIC which looks like this:
#@gui:_=separator(),_=note("<center><b>- Additional Information -</b></center>")
See that inside note("")? That's HTML4. And while I can do without a editor, I feel that it would be better to use an actual editor where I can copy and paste.
My code can look something like this (Without wrap lines):
spoiler
<b>Palette CLI Information</b>\n\n <i>Main Source of Palettes - </i><a href=\"https://lospec.com/palette-list\"> LoSpec Palette List</a>\n\nPalette Number -- pal number_id = pal name_id -- Full Palette Name by Author[if mentioned]\n\n1 -- +pal 0 = +pal bw -- Black & White\n2 -- +pal 1 = +pal rgb -- Red-Green-Blue\n3 -- +pal 2 = +pal b_rgb -- Black with Red-Green-Blue\n4 -- +pal 3 = +pal bw_rgb -- Black & White with Red-Green-Blue\n5 -- +pal 4 = +pal cmy -- Cyan-Magenta-Yellow\n6 -- +pal 5 = +pal cmyk -- Cyan-Magenta-Yellow-Black\n7 -- +pal 6 = +pal w_cmyk -- White-Cyan-Magenta-Yellow-Black\n8 -- +pal 7 = +pal rgbcmy -- Red-Green-Blue with Cyan-Magenta-Yellow\n9 -- +pal 8 = +pal 1bitrgb -- 1-Bit RGB\n10 -- +pal 9 = +pal aurora -- Aurora by GrafxKid\n11 -- +pal 10 = +pal zenit -- Zenit-241 by Zenit40\n12 -- +pal 11 = +pal gbg -- Game Builder Garage: Texture-Sprite Editor Palette\n13 -- +pal 12 = +pal duel -- Duel by Arilyn\n14 -- +pal 13 = +pal hocuspocus -- Hocus Pocus Palette by Apogee Software,Ltd.\n15 -- +pal 14 = +pal playpal -- PLAYPAL by id Tech 1 | DOOM Engine\n16 -- +pal 15 = +pal srb2 -- Sonic Robo Blast 2\n17 -- +pal 16 = +pal uzebox -- Uzebox from Uzebox console\n18 -- +pal 17 = +pal kens16 -- Andrew Kensler - 16 by Andrew Kensler\n19 -- +pal 18 = +pal kens32 -- Andrew Kensler - 32 by Andrew Kensler\n20 -- +pal 19 = +pal kens54 -- Andrew Kensler - 54 by Andrew Kensler\n21 -- +pal 20 = +pal aap12 -- AAP-Micro 12 by Adigun A. Polack\n22 -- +pal 21 = +pal aap16 -- AAP-16 by Adigun A. Polack\n23 -- +pal 22 = +pal aap64 -- AAP-64 by Adigun A. Polack
- Never underestimate HTML - HTMHellwww.htmhell.dev Never underestimate HTML - HTMHell
A collection of bad practices in HTML, copied from real websites.
- “HTML First” Is Not HTML Firstmeiert.com “HTML First” Is Not HTML First · Jens Oliver Meiert
On what is and what isn’t “HTML First.” (It’s not just a hunch: It should start with HTML.)
- The Implied Webhtmhell.dev The Implied Web - HTMHell
A collection of bad practices in HTML, copied from real websites.
- HTML: The Bad Parts - HTMHellhtmhell.dev HTML: The Bad Parts - HTMHell
A collection of bad practices in HTML, copied from real websites.
- The hidden attribute in HTML - HTMHellhtmhell.dev The hidden attribute in HTML - HTMHell
A collection of bad practices in HTML, copied from real websites.
- The hidden depths of the input element - HTMHellwww.htmhell.dev The hidden depths of the input element - HTMHell
A collection of bad practices in HTML, copied from real websites.
- Security Headers using meta - HTMHellhtmhell.dev Security Headers using <meta> - HTMHell
A collection of bad practices in HTML, copied from real websites.
- The Hellish History of HTML: An incomplete and personal accounthtmhell.dev The Hellish History of HTML: An incomplete and personal account - HTMHell
A collection of bad practices in HTML, copied from real websites.
cross-posted from: https://programming.dev/post/6852589
> Not OC
- Back to Basics: 5 HTML attributes for improved accessibility and user experience - HTMHellhtmhell.dev Back to Basics: 5 HTML attributes for improved accessibility and user experience - HTMHell
A collection of bad practices in HTML, copied from real websites.
- Implementing Tic Tac Toe with 170mb of HTML - no JS or CSSportswigger.net Implementing Tic Tac Toe with 170mb of HTML - no JS or CSS
I love it when Chrome releases a new feature, I especially like it when it is experimental. In this post I'm going to show you how I created Tic Tac Toe (Noughts and crosses) with HTML, using one of t
- HTML Firsthtml-first.com HTML First
Principles to make building web software easier, faster and more inclusive.
- How display an element from another page hosted on another sub domain ?
Hi,
I would like to display an element (div) of another web page, hosted on a owned sub domain..
I was planning to use iframe, but it seem that
iframe
only allow to grab the entire page... any ideas ?Thanks.
- An intro to the dialog elementgomakethings.com An intro to the dialog element
Two years ago, I wrote about how the alert(), prompt(), and confirm() methods were being deprecated. At the time, I lamented that there wasn’t a great replacement for any of them. That’s no longer the case. Today, I wanted to give you a primer on the dialog element. Let’s dig in! The dialog element ...
- Custom HTML Elements with no frameworks or libraries
This is my favorite new feature in HTML. It allows us to define custom HTML elements as classes and talk to them using attributes.