|
-
Sep 7th, 2025, 09:11 AM
#1
Thread Starter
Fanatic Member
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 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
-
Sep 7th, 2025, 10:56 AM
#2
Re: A few HTML3.2 questions
~ the original bald headed old fart ~
-
Sep 12th, 2025, 06:23 AM
#3
Thread Starter
Fanatic Member
Re: A few HTML3.2 questions
 Originally Posted by coothead
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
-
Sep 12th, 2025, 07:22 AM
#4
Re: A few HTML3.2 questions
-
Sep 17th, 2025, 04:49 PM
#5
Re: A few HTML3.2 questions
TLDR; HTML3.2 was a hellscape, don't do this to yourself.
 Originally Posted by gaouser
1. How to stretch the inserted image of an attribute, the left blue part on seemingly default style seems to be stretched down without any CSS supporting it
Impossible.
 Originally Posted by gaouser
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>
 Originally Posted by gaouser
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.
 Originally Posted by gaouser
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.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|