Category: 1. HTML Misc

  • Difference between HTML and HTML5?

    HTML5 is more complete and easier than HTML4, it has lots of new tags like <header>, <footer>, <navy>, <Audio>, <video>, <main> etc. It also supports graphics. In the following image, we have described all the essential terms related to HTML and HTML5. HTML is referred to as the primary language of the World Wide Web. HTML has many updates over time, and the latest HTML version is HTML5. There…

  • How to Wrap Text around an image in Html

    Using Internal CSS If we want to wrap the text around an image in Html document using Internal CSS then we have to follow the steps which are given below. Using these steps, we can easily wrap a text. Step 1: Firstly, we have to type the Html code in any text editor or open the existing Html file in…

  • How to make a Search bar in Html

    Using Html and CSS If we want to make the search bar using the Html and Internal CSS then we have to follow the steps which are given below. Using these steps, we can easily view the search bar on the web page in the browser: Step 1: Firstly, we have to type the Html code in any text editor…

  • How to make a Footer in Html

    In HTML, we can easily make a footer in the document which is to be displayed on a web page using the following different two methods: Using Html Tag If we want to make the footer in the Html document using the Html tag then we have to follow the steps which are given below. Using these…

  • How to add Social Media Icons in Html

    If we want to add social media icons in the Html document using the Internal CSS, to show them on the web page then we have to follow the steps which are given below. Using these simple steps, we can easily add the social media icons. Step 1: Firstly, we have to type the Html code in any text…

  • What does ul mean in Html

    The ul is a tag in Html. Html <ul> tag is used for designing the unordered list of items. The <ul> tag is a pair tag, so it is mandatory to close this tag. For defining the items in the list, we have to use <li> tag in the <ul> tag. If we want to create the ordered list of items in the Html document,…

  • How to add Padding in Html

    If we want to add padding in the Html document using the Internal CSS, then we have to follow the steps which are given below. Using these simple steps, we can easily add the padding. Step 1: Firstly, we have to type the Html code in any text editor or open the existing Html file in the…

  • What does p mean in Html

    The p is a tag in Html. Html <p> tag is used to define the paragraph in the documents. The <p> tag is a pair tag, so it is mandatory to close this tag. If we do not close this tag, then the Html editor takes each line in the paragraph. We can also use the attribute align in…

  • How to Highlight text in Html

    Highlight text with Html5 <mark> tag If we want to highlight the text in the Html document using the <mark> tag, then we have to follow the steps which are given below. Using these steps, we can easily highlight the text. Step 1: Firstly, we have to type the Html code in any text editor or open the…

  • How to use PHP in Html

    If we want to use PHP in the Html document, then we have to follow the steps which are given below. Using these simple steps, we can easily add the PHP code. Step 1: Firstly, we have to type the Html code in any text editor or open the existing Html file in the text editor in which…