Skip to content

Commit 9b6de9e

Browse files
projects uploaded
1 parent bd28a43 commit 9b6de9e

File tree

20 files changed

+3628
-0
lines changed

20 files changed

+3628
-0
lines changed

Projects/AI Calculator/README.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# AI Calculator
2+
3+
A digital calculator is a type of electronic calculator, usually but not always handheld, designed to calculate problems in science, engineering, and mathematics.
4+
5+
**Demo**
6+
7+
<img src="https://user-images.githubusercontent.com/79866006/140666210-6111b0e7-5d72-4a9b-abea-177fa59e78a3.jpg" width="200" height="400"/> <img src="https://user-images.githubusercontent.com/79866006/140666232-feb5a9e2-d44a-4345-a6e5-578d9872923d.jpg" width="200" height="400"/> <img src="https://user-images.githubusercontent.com/79866006/140666249-4261c77a-3e5c-44e6-a267-1fe4205cee50.jpg" width="200" height="400"/>
8+
9+
10+
11+
12+
13+
14+
# Info:
15+
16+
Calculate problems in science, engineering, and mathematics.
17+
18+
version.... 2.1.8
19+
20+
Downloads .........
21+
22+
Download size .....
23+
24+
Offered by <a href="https://github.com/The-Young-Programmer/"> Nemonet The Young Programmer </a>
25+
26+
Released on .....
27+
28+
29+

Projects/AI Calculator/index.html

Lines changed: 104 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,104 @@
1+
<!-- Created by Nemonet -->
2+
<!-- Powered by The Young Programmer -->
3+
4+
<!DOCTYPE html>
5+
<html>
6+
7+
<head>
8+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
9+
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Exo+2|Noticia+Text|Bellefair|PT+Sans">
10+
<link rel="stylesheet" href="style.css">
11+
12+
<title> Calculator UI design </title>
13+
</head>
14+
15+
<body>
16+
<div id=for-calc-body>
17+
18+
19+
<!-- Calculator UI Screen - Start -->
20+
<div id=for-screens>
21+
<div class=space>
22+
<marquee scrollamount=5 style="color:skyblue;font-size:70%;" id=marquee>Hello, there! Thanks for viewing my code! If you do find any bug please, make a comment. Thanks ... Calculator UI 2.1X design reference: - My LG K11 smartphone. Yeah. ;) ... Creator: - Nemonet. Power by: - The Young Programmer. :)</marquee>
23+
</div>
24+
<div style="overflow:auto;margin:0 2% 0 2%;height:21%;">
25+
<div id=for-screen1></div>
26+
</div>
27+
<div style="height:12%;" class=space></div>
28+
<div style="overflow:auto;margin:0 2% 0 2%;height:26%;">
29+
<div id=for-screen2></div>
30+
</div>
31+
<div class=space></div>
32+
</div>
33+
<!-- Calculator UI Screen - End -->
34+
35+
36+
<table id=table>
37+
<tr>
38+
<td id=braceopen class=dimgrey>(</td>
39+
<td id=braceclose class=dimgrey>)</td>
40+
<td id=power2 class=dimgrey><small>x<sup>2</sup></small></td>
41+
<td id=root class=dimgrey>&#8730;</td>
42+
<td id=clear>C</td>
43+
</tr>
44+
<tr>
45+
<td id=7 class=grey>7</td>
46+
<td id=8 class=grey>8</td>
47+
<td id=9 class=grey>9</td>
48+
<td id=divide class=dimgrey>&divide;</td>
49+
<td id=del class=green>&larr;</td>
50+
</tr>
51+
<tr>
52+
<td id=4 class=grey>4</td>
53+
<td id=5 class=grey>5</td>
54+
<td id=6 class=grey>6</td>
55+
<td id=times class=dimgrey>&times;</td>
56+
<td id=modulo class=dimgrey>%</td>
57+
</tr>
58+
<tr>
59+
<td id=1 class=grey>1</td>
60+
<td id=2 class=grey>2</td>
61+
<td id=3 class=grey>3</td>
62+
<td id=minus class=dimgrey>-</td>
63+
<td rowspan=2 class=green id=equals>=</td>
64+
</tr>
65+
<tr>
66+
<td id=0 colspan=2 class=grey>0</td>
67+
<td id=point class=grey>.</td>
68+
<td id=plus class=dimgrey>+</td>
69+
</tr>
70+
</table>
71+
72+
</div>
73+
<footer>
74+
<p> AI Calculator UI design<br /> @Nemonet</p>
75+
</footer>
76+
<script src="script.js"></script>
77+
78+
79+
</body>
80+
</html>
81+
82+
83+
84+
85+
86+
87+
88+
89+
90+
91+
92+
93+
94+
95+
96+
97+
98+
99+
100+
101+
102+
103+
104+

0 commit comments

Comments
 (0)