Skip to content

Instantly share code, notes, and snippets.

View Chaitanya-Pratap-Singh's full-sized avatar
😄
happy

Chaitanya Pratap Singh Chaitanya-Pratap-Singh

😄
happy
View GitHub Profile
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
.pacman {
border-top: 60px solid yellow;
border-bottom: 60px solid yellow;
<body>
<div class="bg-img">
<div class="content">
<header>Login To Your Account</header>
<form action="#">
<div class="field">
<span class="fa fa-user"></span>
<input type="text" required placeholder="Email or Phone">
</div>
<div class="field space">
@Chaitanya-Pratap-Singh
Chaitanya-Pratap-Singh / ATM.java
Created November 1, 2021 15:57
Simple Java Program Code Similar to ATM.
package com.company;
import java.util.Scanner;
public class ATM {
private double totalBal = 100;
Scanner scanner = new Scanner(System.in);
public int userAccount() {
System.out.println("Enter Your Account Number");
int account = scanner.nextInt();
return account;
@Chaitanya-Pratap-Singh
Chaitanya-Pratap-Singh / Audio.java
Last active November 1, 2021 07:46
This is a simple java program for buzzer quizzes
package com.company;
import java.io.*;
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import javax.sound.sampled.*;
import javax.sound.sampled.spi.*;
class Audio
// Download the audio file at : https://icedrive.net/0/f795m469Cd
{