Add Small Print in HTML 5

We can add small print to your page by surrounding text with <small> and </small> tags. This tag typically includes disclaimers, legal restrictions copyright information, and other subordinate comments. Not surprisingly web Browsers display this type of text in a smaller size font.

This tag is often put in the footer of the page. for details about marking a section of your page as a footer using the <footer> tag.

Add small Print

Step 1: Type <small> in front of the text you want to mark as small text.

Step 2: Type </small> at the end of the text.

Result Output

<!DOCTYPE html>
<html>
    <Head>
        <Title>Coding thai</Title>
    </Head>
    <body>
        Type of Web Developer 
        <hr>
        <p>
         A <i>front end developer</i> has one general responsibility: <blockquote>ensure that website
      visitors can easily interact with the page. </blockquote> A <i>Back-end developers</i> are the
      experts who build and maintain the mechanisms that process data and perform actions on websites. 
       </p>
       <small>Copyright 2022 Codingthai</small>
    </body>
</html>

Follow us on Social Media For More

FacebookInstagramPinterest

Leave a Comment