Replies
Welcome, guest
Join CrazyEngineers to reply, ask questions, and participate in conversations.
CrazyEngineers powered by Jatra Community Platform
-
@manish-r2Hoep • Jan 8, 2010
Gaurav I don't think that you can display text with help of
ordered list tag
You can use this
Q1  some TEXT HERE<BR>
Q2  some text here<br> -
@mahesh-E2tZ3t • Jan 8, 2010
<html> <body> <h4>Numbered list:</h4> [list] [*]some text here [*]some text here [*]some text here [*]some text here [/list] </body> </html>
-
@sahithi-oJZaYj • Jan 8, 2010
@ mahesh : I think your code prints like this.
Numbered list :
1. some text here
2. some text here
3. some text here
4. some text here
But, Gaurav asked to print Q1,Q2,...
Is it possible to print like that? -
@gauravbhorkar-Pf9kZD • Jan 8, 2010
-
@manish-r2Hoep • Jan 8, 2010
hey Gaurav use like this
Q1.  some text<br> Q2.  some text<br>
Otherwise I don't think that there will be any other method -
@gauravbhorkar-Pf9kZD • Jan 8, 2010
Ya, I also think that there is no method for this.goyal420hey Gaurav use like this
Q1.  some text<br> Q2.  some text<br>
Otherwise I don't think that there will be any other method -
@sookie-T06sFW • Jan 9, 2010
Well, if you want to do purely in HTML then it provides following kind of numbering in <li> tag
- arabic numbers
- lower alpha
- upper alpha
- lower roman
- upper roman
but if usage of style is allowed then using CSS it can be done so. Just give it a try.
😀 -
@gauravbhorkar-Pf9kZD • Jan 9, 2010
Thanks for the suggestion sookie. Currently, I don't know CSS, but I'll consult somebody who knows CSS.sookieWell, if you want to do purely in HTML then it provides following kind of numbering in <li> tag
- arabic numbers
- lower alpha
- upper alpha
- lower roman
- upper roman
but if usage of style is allowed then using CSS it can be done so. Just give it a try.
😀 -
@wlegend-cAOuVB • Jan 11, 2010
Hello,
I suggest that you use break lines or a table with 0 in border to give a more organised text with ability to use effects, by the way , why you don't use an editor like dreamweaver and do what you wanna do in the design mode like you r doing in Microsoft word.
good luck -
@prasad-aSUfhP • Jan 13, 2010
Gaurav,
Look up CSS, I think you can tweak the bullet points (<li> to prepend Q to it). -
@gauravbhorkar-Pf9kZD • Jan 13, 2010
I think CSS is the only option to achieve such output. -
@apple6-xCqSyW • Jul 30, 2012
The following code explains about the ordered list in HTML. The list items are specified using the tag [*].And, the list items tag i.e, <li> is enclosed in the tag- .
<html> <body> <h1>Sample Numbered list:</h1> <ol> <li>Hai! [*]How [*]are [*]you [/list] </body> </html>
Output:
Sample Numbered list:
- Hai!
- How
- are
- you
- .