Posts

Showing posts from July, 2020

google website design

Image
Google website homepage in this we make a website that look like a google ....using the html and css and js .... this is the logo of the website that is used in the html coding... so now here is the code of that ....... Google Homepage Gmail Images Sign In Advertising Business About Privacy Terms Settings so here is the picture that is the loookkkkkkk

Site selector app using Notepad

Image
in this coding time we are code too make a app like a browser  using the Notepad my making it in the batch scripting . here is the code 👉👉👉👉 @echo off color 4f title Site Selector by Vinay Prajapati :top echo *************************************************************** echo. echo Site Selector by Vinay Prajapati echo. echo *************************************************************** echo. echo Keys: echo [ 1 ] Google - Search Engine echo [ 2 ] Whatsapp - Messaging Service echo [ 3 ] Yahoo - Search Engine/Mail Server echo [ 4 ] Facebook - Social Networking echo [ 5 ] Terminate Learnings - My Favorite Edcational Channel echo [ 6 ] Terminate Learnings - Blog echo [ 7 ] Weather - Weather echo [ 8 ] WikiHow - A How-To Website echo [ 9 ] YouTube - Online Videos echo [10] Wikipedia - Online Encyclopedia echo. echo [ e ] Exit echo. echo ******************************************************...

python GUI Calculator

In this we are give the code of the calculator making with the gui python library named Tkinter . from tkinter import * root=Tk() root.geometry("270x480") root.title("Calculator by Vinay") root.config(bg="Skyblue1") def click(event): global scvalue text=event.widget.cget("text") if text=="=": if scvalue.get().isdigit(): value=int(scvalue.get()) else: value=eval(screen.get()) scvalue.set(value) screen.update() elif text=="C": scvalue.set("") screen.update() else: scvalue.set(scvalue.get()+text) screen.update() scvalue=StringVar() scvalue.set("") screen=Entry(root,textvar=scvalue,font="lucida 15 bold") screen.pack(fill=X,ipadx=8,pady=10,padx=10) f=Frame(root,bg="grey") b=Button(f,text="9",padx=12,pady=4,font="lucida 10 bold") b.pack(side=LEFT,padx=18,pad...

Text-to-speech converter

I am going to write the code of the desktop app in just only 2 minutes using the notepad .  so after the code i will give here copy it and then save using the extension = ".vbs" . Dim msg, sapi set sapi = CreateObject("sapi.spvoice") msg=InputBox("Please enter your message","Text-To-Speech Converter") sapi.Speak msg