I want to write fraction value such as the picture below:

How do I write fraction value using html without using image?
NOTE: I don't want this 1 1/2 pattern but strictly just as the pic above
feedback
|
|
Try the following:
This displays as: 11⁄2 | |||||||||
feedback
|
|
The following code will be rendered just as the example in the question, and if the client does not support CSS it will be rendered as plain text, still readable as a fraction:
The middle You may want to change the font-size, because the resulting element may be a little taller than the other characters in the line, or you may want to use a relative position to shift it a little to the bottom. But the general idea, as presented here, may be enough for the basic use. | ||||
|
feedback
|
|
You can use
UPDATE: I made this fiddle that shows a hyphenated fraction in HTML using a table.
| |||||||||||||
feedback
|
|
Using
See the jsFiddle Example. | |||
|
feedback
|