+ 2
How to write a vertical line, heading out paragraph in HTML ?
Please help me regarding how to write Vertical Line, heading, paragraph ,etc.. in HTML Is it even Possible or not ?
11 Respuestas
+ 3
You can use the CSS properties writing-mode and text-orientation to accomplish this:
writing-mode: vertical /*will make text rotated sideways*/
text-orientation: upright; /*will make rotated text upright*/
+ 2
You mean like the <hr> tag?
+ 2
I mean how to write a Line that is displayed in Vertical way Like
T
H
I
S
W
A
Y
+ 2
Thanks you so much Sir for your kind answer
+ 1
Means it's not possible in HTML alone ?
+ 1
you mean this char | or you need something like <hr> ?
+ 1
Yes, unless you place the CSS in the HTML file using the <style> tag.
+ 1
<hr style="height: 100px; width: 1px; background-color: black">
something like this ?
+ 1
{Heading}
<h1>, <h2>.......<h6> tags
h1 is largest and h6 is smallest heading.
(I don't think there is a vertical line in html).
{Horizontal line}
<hr> tag
{Paragraph}
<p> tag
You can look up all the tags in the HTML fundamentals course page
+ 1
Using <hr> tag
0
<h1> vertical </h1>