Skip to content

Instantly share code, notes, and snippets.

View Ebrusky's full-sized avatar
🎯
Focusing

Ebrus Johnson Ebrusky

🎯
Focusing
View GitHub Profile
@Ebrusky
Ebrusky / READme.txt
Created August 4, 2017 21:35
Hello everyone, in this tutorial we will be creating a Simple Calculator using the following web technologies below. * Hypertext markup language (Html5) * Cascading style sheet (Css3) and *JavaScript programming language Notice!! : The above listed is a prerequisite, you must at least have a basic knowledge of them, For you to be able to flow we…
Introduction
In this tutorial , we are going to create a basic calculator. We need to create a basic structure using Hypertext Mark Language(HTML) , style it using Cascading Style Sheet(CSS) and make it work using JavaScript! .
Let's Start
First we create an HTML Document: This will comprises both our CSS and JavaScript Code,
(That's is all in a single page).
@Ebrusky
Ebrusky / analogclock.html
Created August 4, 2017 21:21
Here is an analog clock application source code...
<!DOCTYPE html>
<html>
<body>
<canvas id="canvas" width="400" height="400"
style="background-color:#333">
</canvas>
<h2>Analog Clock</h2>
<script>
var canvas = document.getElementById("canvas");