HTML <hr> Tag
The <hr>
tag is used to create a visual separation or break between different sections or topics on an HTML page.
The <hr>
element is commonly shown as a horizontal line on an HTML page. It's mainly used to divide content or indicate a change in the page.
<!DOCTYPE html>
<html>
<body>
<h1>The Main Languages of the Web</h1>
<p>HTML is the common language used to make websites. It explains how a webpage is organized and is made up of different elements. These elements guide the browser on how to show the content on the page.</p>
<hr>
<p> CSS is a code that tells web browsers how to show HTML elements on different devices like screens, paper, or other platforms. It's helpful because it lets you control the design of many web pages together, saving you a lot of effort.</p>
<hr>
<p> JavaScript is the language used for programming in HTML and the Web. It can modify HTML content and attribute values, as well as change CSS. JavaScript is capable of hiding and revealing HTML elements, among other functionalities.</p>
</body>
</html>