in reply to Re^6: Convert BMP to HTML
in thread Convert BMP to HTML
With HTML5, you can omit A LOT of markup. This is perfectly valid HTML5, even without <head> and <body> elements (they are implicit), and without the closing </html>:
<!DOCTYPE html> <html> <title>Valid HTML</title> <h1>Valid HTML</h1>
Alexander
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^8: Convert BMP to HTML
by LanX (Saint) on Nov 03, 2022 at 10:05 UTC | |
by choroba (Cardinal) on Nov 03, 2022 at 13:25 UTC | |
by LanX (Saint) on Nov 03, 2022 at 13:45 UTC |