Home >> HTML 5 >> br Tag in HTML 5

br Tag in HTML 5

The <br> tag is line break element in HTML. We can use only one br tag for a web page.

For example:-

<!DOCTYPE html>
<html>
<head>
   <title>BR Tag</title>
</head>
<body>
   <p>This is first line.<br>This is second line.</p>
</body>
</html>

Output

This is first line.
This is second line.

Post Your Comment

Next Questions
button Tag
canvas Tag
caption Tag
center Tag
cite Tag
code Tag
col Tag
colgroup Tag
data Tag
datalist Tag
dd Tag
del Tag
details Tag
dfn Tag
dialog Tag
dir Tag
div Tag
dl Tag
dt Tag
em Tag
embed Tag
fieldset Tag
figcaption Tag
figure Tag
font Tag

Copyright ©2022 coderraj.com. All Rights Reserved.