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...

01 HTML Formatting Tags (Part 1)

In this article we will take a look at basic HTML Formatting Tags:














Now we will learn the code line by line. On the first line <!DOCTYPE html> this syntax is called 'Document Declaration' and this declaration is HTML5 declaration.

On the second line we got <html> tag. In this syntax.. On every html document we must enclose every other tags inside this particular tag.

Now before we go further on we take a look at html document sections. HTML document have 2 sections one is head section and second is body section on head section.

Head Section:

On the head section we write the title of our html page, attaching the website icon (favicon), attaching the CSS external files, attaching JavaScript external files, and some meta information tags related to SEO. 

Body Section:

Body section is used to create our website layout all your can see in the browser's body area is the body section of an html page.

Moving further..

As we can see on above code example we write:

<head>

<title>HTML Title<title>

</head> 

Now we see these syntaxes line by line.

The first one is head tag this tag is also mandatory to write in our html document.. Further on we write title tag now this tag's text will be rendered in the browser tab like Home, About Us, Contact Us etc.

Inside the head tag we can attach our external CSS files also which helps styling our web page. We can also attach JavaScript files in the head section.

<body> tag is used to create layouts for our web pages.


Full Tutorial:



Comments

Popular Posts