Skip to main content

Posts

Showing posts from April, 2022

Free sitemap generate

  Your Website URL: Your Total Posts: Instructions: Simply copy the following lines of code and insert them "on the Google Search Console SiteMap directory For visible your website Links". Output: Your Website: Sitemap Generated Copy: What is a sitemap Generator? The sitemap is very important for every webmaster's tool and it's created and submitted to the search engine to describe a website's sections and pages.    A sitemap is an XML formatted and above sitemap generate or sitemap generator helps to ensure that the users and search engine bots and search engine bots are separate the article or pages is particular categories and to find the specific content of their location on the website. Importance of Sitemap    When the sitemap is submitted to the webmaster and the webmaster crawled our website period by the bots is unpredictable. And the period of time bots is crawling our pages or article are indexed by the search engines. ...

Free Generate Meta Description

Title: 60   Characters Remaining Website Description: 160   Characters Remaining Instructions: Simply copy the following lines of code and insert them "Between the <html> and </html> tags in your HTML Document".   This generates meta description that can be used to different names such as SEO description generator or Meta description generator all the functions are the same it creates description for short and sweet and related to the keywords tags with your are provided the content related to the search engine machine make a generate what kind of article is this and settle the article in the perfect place and get higher rankings and click-through rates for your website.    In the above generate meta description tool is easy to handle and just typing the title within 60 characters is good Don’t make the title longer than 60 characters and meta descriptions are filled within 160 characters and a short description is used to a...

Meta Tag Generator Free

Title: 60 Characters Remaining Developed Author Name: Website Description: 160 Characters Remaining Keywords: Website Make Distribution: Global Local Intern Use or not intended for public use Content Site Display: UTF-8 UTF-16 ISO-8859-1 WINDOWS-1252 Robots: All None No Index Index,Follow No Index,No Follow     Instructions: Simply copy the following lines of code and insert them "Between the <html> and </html> tags in your HTML Document". The Meta tag generator free is will help to more important of the website because meta tags are the provided content that preview your website what kind of ...   In the above meta tag generator is easy to use and convert the HTML format there are seven input types site title, author, website description, keywords, site display, distribution (important choose global), and robots tags .   Site title - It should be below the 60 characters is good. Name of the author - author na...

Html parser tool online

An Html parser tool is created to use to add a code into blogger templates and HTML code to tutorial preview in your blogger posts. In the blogger posts without the parse, the code will not be shown so this parse will solve the problem. Here, I created the HTML parse tool online converter and enter the code within the Textarea upper box and it automatically converted the code and shown in the below Textarea box just click the button to copy the escaped code put in the blogger post and see the magic. HTML paste Here:- Convert Html Copy Here:-

student registration form in python with database

  In this tutorial how to create student registration form in python with database using flask and Here ,python is the easy and simple code and easy to learn. Database Connection: from flask import Flask, render_template, request, redirect, url_for, flash from flask_mysqldb import MySQL app = Flask(__name__) app.secret_key = 'abc*123/' app.config['MYSQL_HOST'] = 'localhost' app.config['MYSQL_USER'] = 'root' app.config['MYSQL_PASSWORD'] = '' app.config['MYSQL_DB'] = 'studentdb' mysql = MySQL(app) Fetch Data Form Database: @app.route('/') def home_page(): table = """select id,name,email,gender,mobile from register order by id desc Limit 10""" cursor = mysql.connection.cursor() cursor.execute(table) results = cursor.fetchall() return render_template('home.html', results=results) mysql.connecti...

How to create multiple entries in database for multiple selected values in checkbox

In this tutorial, we are going to learn how to create multiple entries in a database for multiple selected values in the checkbox and multiple entries into the database in PHP are very useful. If the people have selected some more information to take help of the checkbox to do multiple entries in the form and we have to do that in PHP array[], Now, let's details to create the form and multiple entries in the database. First, we need to create a database and like below: Create table in MySQL: CREATE TABLE datafun ( `id` int(11) NOT NULL Auto_increment primary key, `username` varchar(250) NOT NULL, `email` varchar(250) NOT NULL, `prolang` varchar(250) NOT NULL ); In the HTML to create a form for the multiple entries and need to action in PHP to store the data in the database. and the code is given below.This is the HTML form to create a checkbox for select multiple values and send to database.   Read Also: How to create python program to fetch and ...

Javascript to change the background colour font checkbox

  In this tutorial ,we going to learn javascript to change the background colour font checkbox and Here the checkbox click and color are change and uncheck the color are disappear. Read Also: How to create python program to fetch and display the data from sql server database Python Flask tutorial Setting up a Flask and SQL Database Connection   How to create a python flask with mysql database  Python Flask Student List CRUD System Using MySQL Database for Beginners Style: <style> .bckclr{display:block;float:left;} label { width:100px; margin: 0 auto; padding:3px; background-color:#eee; text-align:center; } </style> HTML: <body> <form action="/" method="GET"> <div class="form-check bckclr"> <label class="form-check-label" for="flexCheckDefault" id="Java"> <input class="form-check-input" type="checkbox" value="checkbox" onchange=...