<!DOCTYPE html>
<html>
<head>
<title>Display Inline</title>
<style>
p {
display: inline;
}
</style>
</head>
<body>
<p>www.freetimelearning.com</p>
<p>www.freetimelearn.com</p>
<p>www.freetimelearning.xyz</p>
<p>www.freetimelearn.xyz</p>
</body>
</html>
www.freetimelearning.com
www.freetimelearn.com
www.freetimelearning.xyz
www.freetimelearn.xyz
<!DOCTYPE html>
<html>
<head>
<title>Display Inline Block</title>
<style>
p {
display: inline-block;
}
</style>
</head>
<body>
<p>Hello Free Time Learning</p>
<p>HTML Tutorial.</p>
<p>HTML5 Tutorial.</p>
<p>CSS Tutorial.</p>
<p>CSS3 Tutorial.</p>
<p>Javascript Tutorial.</p>
<p>jQuery Tutorial.</p>
<p>Bootstrap Tutorial.</p>
<p>AngularJS Tutorial.</p>
</body>
</html>
Hello Free Time Learning
HTML Tutorial.
HTML5 Tutorial.
CSS Tutorial.
CSS3 Tutorial.
Javascript Tutorial.
jQuery Tutorial.
Bootstrap Tutorial.
AngularJS Tutorial.
<!DOCTYPE html>
<html>
<head>
<title>Display Run-In</title>
<style>
p {
display:run-in;
}
</style>
</head>
<body>
<p>Hello Free Time Learning</p>
<p>HTML Tutorial.</p>
<p>HTML5 Tutorial.</p>
<p>CSS Tutorial.</p>
<p>CSS3 Tutorial.</p>
<p>Javascript Tutorial.</p>
<p>jQuery Tutorial.</p>
<p>Bootstrap Tutorial.</p>
<p>AngularJS Tutorial.</p>
</body>
</html>
Hello Free Time Learning
HTML Tutorial.
HTML5 Tutorial.
CSS Tutorial.
CSS3 Tutorial.
Javascript Tutorial.
jQuery Tutorial.
Bootstrap Tutorial.
AngularJS Tutorial.
<!DOCTYPE html>
<html>
<head>
<title>Display None</title>
<style>
.hidden {
display: none;
}
</style>
</head>
<body>
<h1>This is Sample heading.</h1>
<div class="hidden">This is text is "Display None"</div>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>
</body>
</html>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.