Skip to content
This repository was archived by the owner on Jan 22, 2024. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions pre,html
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Pre tag in html5</title>

</head>

<body>

<pre>
This is a new tag introduced in html5
instead of using <br> tag to break a line this pre tag automatically break the line as per the para is written in the pre tag
</pre>

</body>

</html>