Line breaks in HTML
by danielkwood
HTML
<html>
<head>
<title>Line break example</title>
</head>
<body>
This is a line of text.<br>This is another line of text.
</body>
</html>
CSS
body{
min-height: 300px;
}
by danielkwood
<html>
<head>
<title>Line break example</title>
</head>
<body>
This is a line of text.<br>This is another line of text.
</body>
</html>
body{
min-height: 300px;
}