FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Simple-calculator-Using-JavaScript/index.html at main · Venkatesh-6921/Simple-calculator-Using-JavaScript · GitHub
Venkatesh-6921
/
Simple-calculator-Using-JavaScript
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
Simple-calculator-Using-JavaScript
/
index.html
Copy path
More file actions
More file actions
Latest commit
History
History
History
44 lines (39 loc) · 1.43 KB
Breadcrumbs
Simple-calculator-Using-JavaScript
/
index.html
Copy path
File metadata and controls
44 lines (39 loc) · 1.43 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html
>
<
html
lang
="
en
"
>
<
head
>
<
meta
charset
="
UTF-8
"
>
<
meta
name
="
viewport
"
content
="
width=device-width, initial-scale=1.0
"
>
<
title
>
Live Practice Of javascript
</
title
>
<
link
rel
="
stylesheet
"
href
="
style.css
"
/>
</
head
>
<
body
>
<
div
class
="
container
"
>
<
div
class
="
inside-container
"
>
<
h1
>
Simple Calculator For Two Numbers
</
h1
>
<
p
>
For Addition Click +
<
br
>
For Subraction Click -
<
br
>
For Multipication Click x
<
br
>
For Division Click ÷
<
br
>
For Division Remainder Click %
<
br
>
<
br
>
</
p
>
</
div
>
<
div
class
="
inside-container2
"
>
<
form
>
<
div
class
="
input
"
>
Enter Your First Number
<
input
type
="
number
"
id
="
Num1
"
required
>
<
br
>
<
br
>
Enter Your Second Number
<
input
type
="
number
"
id
="
Num2
"
required
>
<
br
>
<
br
>
</
div
>
<
button
onclick
="
add()
"
class
="
button
"
>
+
</
button
>
<
button
onclick
="
sub()
"
class
="
button
"
>
-
</
button
>
<
button
onclick
="
Mul()
"
class
="
button
"
>
X
</
button
>
<
button
onclick
="
Div()
"
class
="
button
"
>
÷
</
button
>
<
button
onclick
="
Rem()
"
class
="
button
"
>
%
</
button
>
<
br
>
<
br
>
</
form
>
<
p
id
="
con
"
>
</
p
>
</
div
>
</
div
>
<
script
>
src
=
"function.js"
</
script
>
</
body
>
</
html
>
Back
|
FazBrowse Home
|
New Git URL