-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalculator-app.html
101 lines (90 loc) · 3.95 KB
/
calculator-app.html
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<title>Calculator App</title>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-HCERBDV76D"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-HCERBDV76D');
</script>
<meta name="msvalidate.01" content="B0487B46A104E90209E8A3BEA24ECA0E" />
<meta name="yandex-verification" content="f044b3a12c7918f1" />
<!--end-->
<meta content="learn about data types, variables, lists, tuples, dictionaries,if else,DSA,loops,user-defined functions, oop, threading and scripting." name="description"/>
<meta name="author" content="learnPython"/>
<meta name="keywords" content="Learn Python for free,learn python for beginners,Core Python,Web frameworks,Multiprocess architecture,Serverside templating language,python tutorials,python4"/>
<meta property="og:type" content="website" />
<meta name=”geo.region” content="US-CA" />
<meta name=”geo.placename” content="353 Jane Stanford Way, Stanford, CA 94305, United States" />
<meta name=”geo.position” content="37.430089898615456;-122.17332683124829"/>
<meta name=”ICBM” content="37.430089898615456, -122.17332683124829" />
<link href='https://pythonread.github.io/?m=1' rel='alternate'/>
<link href="/favicon.png" rel="icon" />
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link type="text/css" rel="stylesheet" href="/style1.css" media="all" />
<link type="text/css" rel="stylesheet" href="/style2.css" media="all" />
<link type="text/css" rel="stylesheet" href="/style0.css" media="all" />
<!--<![endif]-->
</head>
<body>
<div class="nav-wrapper" >
<div class="container">
<nav>
<div class="logo wave">
<a href="/" id="logo">
Python Tutorial
</a>
</div>
<div class="nav-toggle-icon" id="nav-toggle-icon" onclick="mobileMenu()">
<div class="material-hamburger">
<span>
</span>
<span>
</span>
<span>
</span>
</div>
</div>
<div class="menu-wrapper" id="menu-wrapper">
<div class="nav-indicator">
</div>
<ul class="menus">
<li>
<a class="wave" href="/">
Home
</a>
</li>
<li>
<a class="wave" href="/projects.html">
Projects
</a>
</li>
<li>
<a class="wave" href="/free-course.html"
target="_blank">
Free Course
</a>
</li>
<li>
<a class="wave" href="/dsa.html" >
DSA
</a>
</li>
</ul>
</div>
</nav>
</div>
</div>
<div style="margin-left:10px ; margin-top: 15px; ">
<iframe width="560" height="315" src="https://www.youtube.com/embed/uwSY9XqQGXw" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div >
</code>
</pre>
</p>
</body>
</html>