Skip to main content

Featured

How To Remove JotForm Branding (With Using Code)

 1. Include the latest jQuery file in your functions.php file: Script Code (Open functions.php file and include this script) : function jquery_cdn_script() {        wp_enqueue_script( 'jquery-script', 'https://code.jquery.com/jquery-3.6.0.min.js', array(), '1.0.0', true ); } add_action( 'wp_enqueue_scripts', 'jquery_cdn_script' ); 2. Now after inserting the above code. Open the footer.php file and copy paste the below code just before the wp_footer() function. The reason why we are inserting after the wp_footer() function because it loads all of the JS scripts in to your theme. So make sure jQuery cdn  file  get loads first and then it will run our below JS Script. Code: <script> var $ = jQuery.noConflict(); jQuery(document).ready(function(jQuery) { "use strict"; $('iframe').contents().find("head").append($("<style type='text/css'>  div.formFooter{ display:none !important; } .jf-branding{ disp...

02 HTML - Quotation and Citation Element Tags

In this article we will take a look on Quotation and Citation Element Tags:

  1. Blockquote tag.
  2. Q tag
  3. Abbr tag
  4. Address tag
  5. BDO tag
1. Blockquote tag:

If we want to display text from other sources we will use blockquote the tag for using blockquote is <blockquote cite=""> Some content here </blockquote>. Cite attribute is use to write the URL of the source from where you copying the text from.

2. Q tag:

Q tag is known as quotations tag it will render double quotes (inverted commas) on web browser.
Syntax:<q> Some Content Here </q>.

3. Abbr tag:

This tag is used when we want to display the text in a short forms. Its called abbreviation tag.
Syntax: <abbr title="Hyper Text Markup Language">HTML</abbr>.

4. Address tag:

This tag is use to write addresses in your web page. This tag is normally used on contact us pages.
Syntax: <address>Some address here</address>

5. BDO tag:
The full form of this tag is Bi-Directional Override tag. This tag is normally used to display the text from right to left or left to right. It can be helpful for creating Urdu or Arabic websites.
Syntax: <bdo dir="rtl">This text will be written from right to left</bdo>


Full Tutorial:


Comments

Popular Posts