0
how to make underline
4 Antworten
+ 1
<u>element is for underline
Example:
<p>This is a <u>underline</u>.</p>
Note:The <u> element was deprecated in HTML 4.01.).
The <u> element is redefined in HTML5
0
In html5 it is better to use css to underline the text.
H1{
Text-decoration:underline;
}
0
use ins tag
<ins>.....</ins>
- 2
<hr>your text here</hr>