This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> |