+ 2
is this a valid syntax,
<p><i>Bluechips,<i><br/>the certified and tested best ones</p> can i break a line with one part of line being formatted?
12 Respuestas
+ 5
Add / to <i>
+ 2
You forgotten / in <i>!
+ 1
Yes.
+ 1
Where is the fault at my code?
+ 1
Done thanks
+ 1
Hey There!!!
u have forgotten "/" in <i>
---> <p><i>Bluechips,</i>
This is the correct syntax.
Also, you can definitely break a line with it's one part being formatted
<p><i>Bluechips,</i><br />the certified and tested best ones</p>
Do note that, you can even use <br> instead of <br/> but since it is not a cleaner way to represent your program, you should go ahead with your syntax.
Thank You!!!
All the Best Debashish!!
0
That's a good code
- 1
I want only the first part of the paragraph to be italic and the rest after break to be normal . Is it possible?
- 1
I did the same but it makes all the text in paragraph italics.
- 1
Close the i tag as </i>
- 1
Not if you mean something like this...
<p> <i>Bluechips,</i> <br/>the certified and tested best ones.</p>
- 2
Okay thanks..so my <li>
Is like this
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JScript</li>
</ul>
Forgot to close the list.