HTML
Hypertext Markup Language
Formatting elements are provided in HTML to mark special types of text.
<b> This element indicates that the enclosed text should be displayed in boldface.
<title>Skillpundit</title>
</head>
<body>
<b>Skillpundit</b>
</body>
</html>
<i> This element indicates that the enclosed text should be displayed in an italic typeface.
<title>Skillpundit</title>
</head>
<body>
<i> Skillpundit</i>
</body>
</html>
<u> This element is used to indicate that the enclosed text should be displayed underlined.
<title>Skillpundit</title>
</head>
<body>
<u>Skillpundit</u>
</body>
</html>
<big> This element indicates that the enclosed text should be displayed in a larger font relative to the current font.
<title>Skillpundit</title>
</head>
<body>
<big>Skillpundit</big>
</body>
</html>
<small> This element indicates that the enclosed text should be displayed in a larger font relative to the current font.
<title>Skillpundit</title>
</head>
<body>
<small>Skillpundit</small>
</body>
</html>
<strong> This element indicates strongly emphasized text. It is usually rendered in a bold typeface, but is a logical element rather than a physical one.
<title>Skillpundit</title>
</head>
<body>
<storng>Skillpundit</strong>
</body>
</html>
<br> This Empty element forces a link break.
<title>Skillpundit</title>
</head>
<body>
<p>To acquire knowledge, one must study; <br> But to acquire wisdom, one must observe.</p>
</body>
</html>
To acquire knowledge, one must study;
But to acquire wisdom, one must observe.