Skip to content

Instantly share code, notes, and snippets.

View mrinmoycpp's full-sized avatar

Mrinmoy Dhali mrinmoycpp

View GitHub Profile
@mrinmoycpp
mrinmoycpp / Random Quote Generator index.html
Last active October 12, 2025 10:07
Random Quote Generator using HTML, CSS, JS.
<!DOCTYPE html>
<html>
<head>
<title>Random Quote Generator</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Random Quote Generator</h1>
<p id="quote">Click the button to get a quote!</p>
<button onclick="newQuote()">New Quote</button>
@mrinmoycpp
mrinmoycpp / Basic Calculator index.html
Last active October 12, 2025 10:07
Calculator Using HTML,CSS, JS
<div class="calc">
<input id="display" readonly>
<br>
<div>
<button onclick="clr()">C</button>
<button onclick="del()">⌫</button>
<button onclick="append('%')">%</button>
<button onclick="append('/')">/</button><br>
<button onclick="append('7')">7</button>
<button onclick="append('8')">8</button>
@mrinmoycpp
mrinmoycpp / index.html
Last active October 12, 2025 09:05
Calculator Using HTML
<div class="calc">
<input id="display" readonly>
<br>
<div>
<button onclick="clr()">C</button>
<button onclick="del()">⌫</button>
<button onclick="append('%')">%</button>
<button onclick="append('/')">/</button><br>
<button onclick="append('7')">7</button>
<button onclick="append('8')">8</button>