Posts

Showing posts with the label webpage creator for Android

ONLINE WHITEBOARD FREE

  Click to see live demo Source Code: <!DOCTYPE html> <head> <meta charset="utf-8" /> <style> * { margin: 0; padding: 0; } body, html { height: 100%; } #myCanvas { cursor: crosshair;     position: fixed; } </style> <title>HTML5 Canvas Drawing Board</title> <script type="text/JavaScript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js?ver=1.4.2"></script> </head> <body> <br><br> <h2>by Prakhar Doneria</h2> <canvas id="myCanvas"> Sorry, your browser does not support HTML5 canvas technology. </canvas>               <script>     window.onload = function() { var myCanvas = document.getElementById("myCanvas"); var ctx = myCanvas.getContext("2d");          // Fill Window Width and Height     myCanvas.width = window.innerWidth; myCanvas.height = wi...

DARK MODE USING HTML,CSS,JAVASCRIPT

Toggle Dark/Light Mode Click the button to toggle between dark and light mode for this page. Toggle dark mode Program Code POP Up using HTML

COPY TEXT MAKER

Click "Copy Text" button to copy input text Copy Text Get program code

Temperature Converter

Temperature Converter. Temperature Converter Celsius Fahrenheit Developed by @Prakhar Doneria.

Word and Character Counter

Word and character counter Word and character counter 0 words and 0 characters Developed by @Prakhar Doneria

ABOUT ME | PRAKHAR DONERIA (Talk with my A.I. assistant)

Yours personal assistant Know me more. Ask : What is your name, Where are you from, What is your hobbies? , How old are you?

How to create Toogle Button using HTML and JavaScript | Prakhar Doneria

Download Zip for this program codes click me

How to create a mobile vibrate program using html?

Page Title Vibrate mobile for 10 sec vibrate for 5 sec Download PDF click me

How to create calculator using HTML

Image
 Write the codes: <html>  <head>        <script>           //function that display value           function dis(val)           {               document.getElementById("result").value+=val           }                       //function that evaluates the digit and return result           function solve()           {               let x = document.getElementById("result").value               let y = eval(x)               document.getElementById("result").value = y           }            ...

How to create a HTML webpage on Computer/Mobile?

 How to create HTML in Computer  Open Search option  Search notepad Open Notepad  How to create HTML page in Android  Click on link to download app 👇🏻 https://play.google.com/store/apps/details?id=com.techbajao.htmleditor (HTML 5 based) for phone How to Save a HTML document in Computer *To save a document in html form its domain extension should be .html Q.What is HTML? A.HTML means Hyper Text Markup Language.It is used for developing Webpage It is a container tag and use Syntax- <HTML> ------------------- --------------–----–-------- </HTML> Q.Head <HEAD> Tag : A.It is placed between the HTML and TITLE tag.It is a container Tag.Syntax=> <HTML> <HEAD> ---------------------- ----------------------- </HEAD> </HTML> Q.Title <TITLE> tag : A.Used between HEAD and BODY tag.It is a container tag. Syntax: <HTML> <HEAD> <TITLE> ---------------------- </TITLE> ----------------------- </HEAD...

What is a Blogs? How to create account on Blog?

What is a blog?How to create a Blog account? Prakhar Doneria A blog is a way to create free of cost web pages which can we uploaded online on search engines for free.The world "BLOG" comes from "WEB BLOG" . A blog provides a free domain name to a person who uses it.One of the most common blog site is GOOGLE BLOG which gives free service to its user. It is one of the most common site in which every age person can post his/her blog according to his/her choice.A blog provides a secure place for its user. The topic placed on a blog can be from personal to profesional. It is intresting to know about a person who uses a "BLOG" is called "BLOGGER". The emergence and growth of blogs in the late 1990s coincided with the advent of web publishing tools that facilitated the posting of content by non-technical users who did not have much experience with HTML or computer programming. Previously, a knowledge of such technologies as HT...