Posts

Showing posts with the label blogger

Calculator Online PRO

Calculator + - * / 1 2 3 4 5 6 7 8 9 0 . AC = palette nights_stay

HOW TO MAKE GAME WITH HTML

Advantages and Use of Canvas Canvas is used to make game in HTML using CSS or JavaScript, we can make our game more attractive Adding Canvas To insert a Canvas we use the syntax: &ltcanvas id="myCanvas" width="200" height="100" style="border:1px solid #000000;"&gt Your browser does not support the HTML canvas tag. &lt/canvas&gt Adding Game Object An Game Object is the role playing character which is simply known as Character. In this Example we will add only one Game Object Syntax: &lt!DOCTYPE html&gt &lthtml&gt &lthead&gt &ltmeta name="viewport" content="width=device-width, initial-scale=1.0"/&gt

Feedback form program

<!Doctype html>    <html>          <head>              <meta name="viewport" content="width=device-width, intial-scale=1">              <title> Form </title>        </head>   <style>      @import url('https://fonts.googleapis.com/css2?family=Itim&display=swap');      @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');      @import url('https://fonts.googleapis.com/css2?family=Newsreader:wght@300&display=swap');      @import url('https://fonts.googleapis.com/css2?family=Girassol&display=swap');    form {         font-family:'Itim', cursive;             }    button{           border:2px solid black;   ...

POP UP using HTML

Click here for the result Program Code  <html> <head> <script type="text/javascript"> <!-- function sayHello() { alert("Hello World ") } </script> </head> <body> Click here for the result <br> <input type="button" onclick="sayHello()" value="Say Hello" />     </body> </html> Copy Text Program

Copy Text Program Code

 <!DOCTYPE html> <html> <body> <div align="center"> <p>Click "Copy Text" button to copy input text</p> <input type="text" value="Hello World" id="myInput"> <button onclick="myFunction()">Copy Text</button> </div> <script> function myFunction() {   var copyText = document.getElementById("myInput");   copyText.select();   copyText.setSelectionRange(0, 99999)   document.execCommand("copy");   alert("Copied the text: " + copyText.value); } </script> </body> </html> View Output

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?

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