How Do I Get MS Sans Serif On My Whole Webpage? - Coding Forums
Có thể bạn quan tâm
- Forums New posts Search forums
- Members Current visitors
Search
Everywhere Threads This forum This thread Search titles only Search Advanced search…- New posts
- Search forums
- Forums
- Archive
- Archive
- HTML
- Thread starter johnsonholding
- Start date Jan 19, 2006
johnsonholding
I am finding that Arial and MS Sans Serif looks exactly the same...Is this true or am I seeing things? I am trying to get on every computer with MS Sans Serif because it is slightly different from Arial - is there a way of doing this? Do I need to use CSS? Thanks! LLeonard Blaisdell
[email protected] said: I am finding that Arial and MS Sans Serif looks exactly the same...Is this true or am I seeing things? I am trying to get on every computer with MS Sans Serif because it is slightly different from Arial - is there a way of doing this? Do I need to use CSS? Thanks! Click to expand...Change the default sans-serif font in your browser to something else. I'm really not sure I understand your question. leo J
Jose
I am trying to get on every computerwith MS Sans Serif because it is slightly different from Arial Click to expand...What does "get on every computer with" mean? If you mean you want to have your web site be displayed in the font called "MS Sans Serif", you mostly can't, even though you mostly can. First, I don't think MS Sans Serif is a font, but a request to use one of many sans serif fonts (the browser will use its default sans serif font, which is probably arial, but could be anything). I don't have a font called "MS Sans Serif" on my (windows 98) computer. In the case where it =is= a specific font, you can request that the browser use it, but the font must be available on the computer for that to work, otherwise the browser will use the "next best thing". Remember, users may not want =your= font, they may well want =their= font (and size). That should be honored. That said - Arial is a dumass font for the net since it confuses several letters and numbers, leading to easy impersonation. Jose J
johnsonholding
My designer loves the font and wants to use it, so I am stuck with Microsoft San Serif font that seems to work in MS word and wordpad. I looked at both in MS word and there are differences. In Dreamweaver, it seems to revert to Arial, but my designer would have none of it. I am guessing since Microsoft puts out MS Sans Serif, that is should be on every single font list on the computer...but maybe I am wrong. Should CSS be able to do this? Or even plain HTML? Rrichardv2
CSS absolutely can make all of your page the same font. Read up on CSS font-family. 1. In the <head> of your page, link to the CSS file like... <link rel="stylesheet" type="text/css" href="style.css"> 2. In style.css set up whatever you want... body { font-family: "MS Sans-serif", sans-serif, Georgia, Whatever } 3. Because not ALL machines have any of the fonts the font-family selector says "USE THIS LIST IN PRIORITY ORDER! Use the first font you find on this machine, starting from the left." Any font that has a space in it MUST be in quotes, otherwise, just make a comma separated list. Google "fonts CSS font-family" to find out the CLOSEST to the font you want on different operating systems. (I found that list, but it is not with me now.) MMark Parnell
Deciding to do something for the good of humanity,I am trying to get on every computer with MS Sans Serif Click to expand...You can *suggest* through CSS that the browser use MS Sans Serif[1], but it is subject to several caveats: 1) The visitor has to actually *have* a font called MS Sans Serif on their computer 2) The visitor has the ability to override any font selection you make By all means use MS Sans Serif - that's what your designer will see, which is the main thing. Just don't expect it to be the same on everyone else's computer. There is no possible way to make that happen. [1] E.g. body {font-family: "MS Sans Serif", Arial, sans-serif} M
Mark Parnell
Deciding to do something for the good of humanity, richardv2font-family: "MS Sans-serif", sans-serif, Georgia, Whatever Click to expand...The last 2 font names there (Georgia and Whatever) are pointless - sans-serif is the generic font family, so if the browser gets to that point in the list, it will use its default sans-serif font. It will never get to the rest of the list. If you want to specify multiple fonts, they need to be before the generic option. T
Toby Inkster
Jose said: I don't have a font called "MS Sans Serif" on my (windows 98) computer. Click to expand...I bet you do. It just won't show up in most font listings because it's not a TrueType font. Go to "Fonts" in "Control Panel" and I'm sure you'll see it listed. By default, it's what Windows 95/98/NT (and perhaps other versions) use for their UI. To the OP: as it's not a TrueType font, it's likely that many browsers won't let you use it on a web page. J
Jose
I bet you do. It just won't show up in most font listings because it'snot a TrueType font. Go to "Fonts" in "Control Panel" and I'm sure you'll see it listed. Click to expand...Well, I'll be a monkey's uncle! I could swear there is a setting in Word that says to use all fonts, and so I'd expect to have it available in that list, but it isn't, even though I have the font. Jose S
Stewart Gordon
Jose said: What does "get on every computer with" mean? If you mean you want to have your web site be displayed in the font called "MS Sans Serif", you mostly can't, even though you mostly can. First, I don't think MS Sans Serif is a font, but a request to use one of many sans serif fonts (the browser will use its default sans serif font, which is probably arial, Click to expand...Nonsense. MS stands for Microsoft. MS Sans Serif is a bitmap font that came with Windows 3.1 and some subsequent Windows versions. It replaced Helv, which was in previous versions of Windows. There was also MS Serif, which replaced Tms Rmn. The CSS declaration font-family: sans-serif; persuades the browser to use a sans-serif font without specifying which one. The HTML 'equivalent' <font face="sans-serif"> also seems to work in SeaMonkey, though it doesn't appear to be part of the standard.
but could be anything). I don't have a font called "MS Sans Serif" on my (windows 98) computer. Click to expand...I hadn't realised they'd stopped providing it by that time. I'll have to check when I get home.
In the case where it =is= a specific font, you can request that the browser use it, but the font must be available on the computer for that to work, otherwise the browser will use the "next best thing". Remember, users may not want =your= font, they may well want =their= font (and size). That should be honored. That said - Arial is a dumass font for the net since it confuses several letters and numbers, leading to easy impersonation. Click to expand...If you mean that the difference between I and l isn't obvious, then yes. But that's true of many sans-serif fonts. And even some serif fonts make l and 1 look almost identica1. OTOH, there's a school of thought that thinks that sans-serif fonts are actually best for online documents. Allegedly easier on the eyes, or something like that. Stewart. -- -----BEGIN GEEK CODE BLOCK----- Version: 3.1 GCS/M d- s:- C++@ a->--- UB@ P+ L E@ W++@ N+++ o K-@ w++@ O? M V? PS- PE- Y? PGP- t- 5? X? R b DI? D G e++>++++ h-- r-- !y ------END GEEK CODE BLOCK------ My e-mail is valid but not my primary mailbox. Please keep replies on the 'group where everyone may benefit. T
Travis Newbury
I am finding that Arial and MS Sans Serif looks exactly the same...Is this true or am I seeing things? I am trying to get on every computer with MS Sans Serif because it is slightly different from Arial - is there a way of doing this? Do I need to use CSS? Thanks! Click to expand...You didn't even give yourself a breath before you contradicted yourself... "I am finding Arial and MS Sans Serif looks exactly the same..." "I am trying to get on ever computer with MS Sans Serif because it is slightly different from Arial." T
Toby Inkster
Jose said: Toby Inkster: Well, I'll be a monkey's uncle! I could swear there is a setting in Word that says to use all fonts, and so I'd expect to have it available in that list, but it isn't, even though I have the font. Click to expand...Well, as it's a bitmapped font, it's only available at particular sizes. Off the top of my head, 8.5pt and 10pt are a couple of them. Perhaps Word hides it from the font menu unless you're in one of those sizes? Just an idea. S
Stewart Gordon
Toby Inkster wrote:Well, as it's a bitmapped font, it's only available at particular sizes. Off the top of my head, 8.5pt and 10pt are a couple of them. Perhaps Word hides it from the font menu unless you're in one of those sizes? Just an idea. Click to expand...Not all printers support Windows bitmap fonts. If you have such a printer set up as the default, many applications will not list them. I haven't come across any program that adjusts its font list to the size that the user is in. Rather, if you use a bitmap font at what isn't one of its sizes, then it will tend to use the closest size it can, sometimes using a pixel resize to achieve a multiple of one of the font's sizes. Of course, when you have a bitmap font selected, some programs will adjust the list of sizes to the font. Stewart. -- -----BEGIN GEEK CODE BLOCK----- Version: 3.1 GCS/M d- s:- C++@ a->--- UB@ P+ L E@ W++@ N+++ o K-@ w++@ O? M V? PS- PE- Y? PGP- t- 5? X? R b DI? D G e++>++++ h-- r-- !y ------END GEEK CODE BLOCK------ My e-mail is valid but not my primary mailbox. Please keep replies on the 'group where everyone may benefit. J
Jonathan N. Little
Stewart said: I hadn't realised they'd stopped providing it by that time. I'll have to check when I get home. Click to expand...It's there, just that WinApps are 'TrueType' biased and many times don't show the screen (bitmap) fonts. On any Windows machine click 'Start|Run..." enter 'charmap' and view all your installed fonts including screen fonts like 'terminal' and 'fixsys'
If you mean that the difference between I and l isn't obvious, then yes. But that's true of many sans-serif fonts. And even some serif fonts make l and 1 look almost identica1. Click to expand...No that is not true. The confusion is between the uppercase 'i' and lowercase 'l' with Arial (common to many sans-serif fonts). The number '1' is distinguishable for the letter characters by a upper simplified serif, (little tang going off the left) where the letter characters have no such serif. Actually the legibility problem is with serif fonts like Times and Times New Roman that have a problem between lowercase 'l' and the numeral '1'!
OTOH, there's a school of thought that thinks that sans-serif fonts are actually best for online documents. Allegedly easier on the eyes, or something like that. Click to expand...They are easier to read because they are 'blacker' (heavier weight) in general and the simplified lines are easier to read when smaller or in lower contrast situations. Script and decorative fonts are probably the least legible and should only be used sparingly J
JDS
My designer loves the font and wants to use it Click to expand...Sounds like you need a WEB designer and not a print designer. S
Stewart Gordon
Jonathan said: No that is not true. Click to expand...What is not true?
The confusion is between the uppercase 'i' and lowercase 'l' with Arial (common to many sans-serif fonts). The number '1' is distinguishable for the letter characters by a upper simplified serif, (little tang going off the left) where the letter characters have no such serif. Actually the legibility problem is with serif fonts like Times and Times New Roman that have a problem between lowercase 'l' and the numeral '1'! Click to expand...You seem to be saying exactly what I just said, only in different words.
They are easier to read because they are 'blacker' (heavier weight) in general and the simplified lines are easier to read when smaller or in lower contrast situations. Script and decorative fonts are probably the least legible and should only be used sparingly Click to expand...Does this mean that if you took a sans-serif font and added serifs to it, then it would be as easy to read as the original sans-serif font? Stewart. -- -----BEGIN GEEK CODE BLOCK----- Version: 3.1 GCS/M d- s:- C++@ a->--- UB@ P+ L E@ W++@ N+++ o K-@ w++@ O? M V? PS- PE- Y? PGP- t- 5? X? R b DI? D G e++>++++ h-- r-- !y ------END GEEK CODE BLOCK------ My e-mail is valid but not my primary mailbox. Please keep replies on the 'group where everyone may benefit. J
Jonathan N. Little
Stewart said: What is not true? You seem to be saying exactly what I just said, only in different words. Click to expand...Sorry you are correct, I misread what you wrote, we are saying the same thing...
Does this mean that if you took a sans-serif font and added serifs to it, then it would be as easy to read as the original sans-serif font? Click to expand...They [sans-serif] are easier to read because they are 'blacker' (heavier weight) in general and the simplified lines are easier to read [especially] when smaller or in lower contrast situations. Serif fonts are genenerally more difficult to read in the above situations. Script and decorative fonts are *least* legible I said. A whole page full of 'Aristocrat', 'Old English' or 'Kidnap' can be a b*tch to read especially in great quantity and in reduced sizes (font-size<100%). Post reply
Ask a Question
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.
Ask a QuestionSimilar Threads
Can I modify the tooltip display on an <input type="xx"> statement? | 2 | Oct 22, 2023 |
How do I fix this issue in sqaurespace code block? | 1 | Jul 2, 2024 |
I need help fixing my website | 2 | Oct 15, 2023 |
Image on header | 2 | May 2, 2024 |
<Button ...> display is fine, except for two things | 1 | Oct 23, 2023 |
How to position the *tooltip* comment on these buttons? | 9 | Nov 4, 2023 |
Help with my responsive home page | 2 | Dec 14, 2022 |
How can I add arrows to my FAQ | 0 | Aug 9, 2023 |
Members online
No members online now. Total: 724 (members: 3, guests: 721) Robots: 103Forum statistics
Threads 474,129 Messages 2,570,763 Members 47,324 Latest member RicoBoxerLatest Threads
- Coding error ??
- Started by </DeGenerate>
- Today at 8:36 AM
- Tiktok bot
- Started by gabeyyka
- Today at 6:31 AM
- How to configure a database in Python script website?
- Started by treekmostly22
- Today at 4:42 AM
- How do I migrate EDB emails to PST?
- Started by shivamsaini
- Yesterday at 12:12 PM
- Getting a keypress without waiting for the key to be released
- Started by tbman
- Saturday at 9:33 PM
- Issue with p2p networking with websockets
- Started by Gullwing7
- Saturday at 1:54 PM
- I need help installing imagick on xampp in ubuntu
- Started by AXial
- Friday at 3:29 PM
- A puzzlement about TagName
- Started by jimandy
- Thursday at 9:25 PM
- When you are lazy...
- Started by tbman
- Thursday at 6:03 PM
- Hello from an Ubuntu Enthusiast and Python Hobbyist!
- Started by hopkins1988
- Thursday at 3:43 PM
- Forums
- Archive
- Archive
- HTML
Từ khóa » Html Font Microsoft Sans Serif
-
CSS Web Safe Fonts - W3Schools
-
Microsoft Sans Serif Font Family - Typography
-
FontFamily Property (Windows) - Microsoft Docs
-
Ms Sans Serif Font Html Code Example - Code Grepper
-
Microsoft Sans Serif Font | Webfont & Desktop - MyFonts
-
631193 - The Font "MS Sans Serif" Is Ignored - Bugzilla@Mozilla
-
The Ultimate List Of Web-Safe HTML And CSS Fonts - HubSpot Blog
-
Embed Microsoft Sans Serif Font Family - CDNFonts
-
Sans-Serif | CSS-Tricks
-
Microsoft Sans Serif Font Family
-
Td { Font-family: "Verdana", "Arial", "Helvetica", "sans-serif"; Font-size ...
-
Frame.xml - Mississippi State Personnel Board
-
Html Font Family Microsoft Sans Serif - Dignomad.