Results 1 to 5 of 5

Thread: A few HTML3.2 questions

  1. #1

    Thread Starter
    Fanatic Member gaouser's Avatar
    Join Date
    Mar 2022
    Location
    Turkey, down the old sides of Fatih
    Posts
    607

    A few HTML3.2 questions

    I've seen many FrontPage-Based Websites, I kind of have a few questions that came up to my mind while checking the websites.

    I kind of feel like VBForums is more accurate to post rather than most HTML forums, primarily because of the age of VBForums.

    1. How to stretch the inserted image of an
    HTML Code:
    background=""
    attribute, the left blue part on seemingly default style seems to be stretched down without any CSS supporting it,

    2. Is there a way to mark text's background? <font> tag can change the foreground color, I had the idea of a single cell table to do it but it seems to create a newline

    3. How to replace the bullet points <ul> use with an image? seen websites do it.

    4. Is there a way to set Tahoma to exactly 8px? Setting using
    HTML Code:
    <font size="1">
    makes it smaller than 8px, and size 2 makes it larger than 8px

    got nuthin' to do but to make a new project, hype, then give up

    Check out all my cool stuff btw
    VB: EveryDiscord, a Discord client made fully in VB6 | MSPaint Modifier, a VB6-based MSPaint hooking engine, experimental | OpenIM, a fully VB6 instant messaging service based on TCP/IP connections | Kadooki (Overall the AltWWW project), the WWW re-imagined by me with continuations of HTML3.2's parts. | ClaFeed, A little feed algorithm I have been developing for a Twitter-style system. | CfmOS PC, my project CfmOS ported to VB6 in order to prototype faster, often lags on updates though!

    C: LegacyResource, a little ResHacker ripoff | CfmOS, A mobile OS designed to mimic AOSP (Stock Android) on an ESP32-S3, featuring a full bytecode architecture

  2. #2
    Hyperactive Member coothead's Avatar
    Join Date
    Oct 2007
    Location
    chertsey, a small town 25 miles south west of london, england.
    Posts
    285

    Re: A few HTML3.2 questions

    Hi there gaouser,

    HTML 3.2 was superceded by HTML 4.01 26 years ago.

    HTML Versions

    We now have...

    HTML Living Standard — Last Updated 6 September 2025


    ~ the original bald headed old fart ~

  3. #3

    Thread Starter
    Fanatic Member gaouser's Avatar
    Join Date
    Mar 2022
    Location
    Turkey, down the old sides of Fatih
    Posts
    607

    Re: A few HTML3.2 questions

    Quote Originally Posted by coothead View Post
    Hi there gaouser,

    HTML 3.2 was superceded by HTML 4.01 26 years ago.

    HTML Versions

    We now have...

    HTML Living Standard — Last Updated 6 September 2025
    Making legacy pages for fun.

    got nuthin' to do but to make a new project, hype, then give up

    Check out all my cool stuff btw
    VB: EveryDiscord, a Discord client made fully in VB6 | MSPaint Modifier, a VB6-based MSPaint hooking engine, experimental | OpenIM, a fully VB6 instant messaging service based on TCP/IP connections | Kadooki (Overall the AltWWW project), the WWW re-imagined by me with continuations of HTML3.2's parts. | ClaFeed, A little feed algorithm I have been developing for a Twitter-style system. | CfmOS PC, my project CfmOS ported to VB6 in order to prototype faster, often lags on updates though!

    C: LegacyResource, a little ResHacker ripoff | CfmOS, A mobile OS designed to mimic AOSP (Stock Android) on an ESP32-S3, featuring a full bytecode architecture

  4. #4
    PowerPoster
    Join Date
    Nov 2017
    Posts
    3,630

  5. #5
    Super Moderator dday9's Avatar
    Join Date
    Mar 2011
    Posts
    12,371

    Re: A few HTML3.2 questions

    TLDR; HTML3.2 was a hellscape, don't do this to yourself.

    Quote Originally Posted by gaouser View Post
    1. How to stretch the inserted image of an
    HTML Code:
    background=""
    attribute, the left blue part on seemingly default style seems to be stretched down without any CSS supporting it
    Impossible.

    Quote Originally Posted by gaouser View Post
    2. Is there a way to mark text's background? <font> tag can change the foreground color, I had the idea of a single cell table to do it but it seems to create a newline
    Close, set the cellpadding attribute of the table to 0:
    HTML Code:
    <table bgcolor="#FFFF00" cellspacing="0" border="0">
      <tr>
        <td><font color="red">This text has a yellow</font> background</td>
      </tr>
    </table>
    Quote Originally Posted by gaouser View Post
    3. How to replace the bullet points <ul> use with an image? seen websites do it.
    Impossible using an unordered list, you could use a table though.

    Quote Originally Posted by gaouser View Post
    Is there a way to set Tahoma to exactly 8px? Setting using
    HTML Code:
    <font size="1">
    makes it smaller than 8px, and size 2 makes it larger than 8px
    Impossible to specify an exact pixel size, you're totally reliant on the browser/system.
    "Code is like humor. When you have to explain it, it is bad." - Cory House
    VbLessons | HtmlLessons | CssLessons | Code Tags | Sword of Fury - Jameram

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width