-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcalc.html
More file actions
38 lines (34 loc) · 940 Bytes
/
calc.html
File metadata and controls
38 lines (34 loc) · 940 Bytes
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
<html>
<link rel="icon" href="https://cdn-icons-png.flaticon.com/512/7784/7784482.png">
<title>Calculator - Utilities - The HTML Project</title>
<style>
iframe {
display: block;
margin-left: auto;
margin-right: auto;
width: 60%;
height: 90%;
}
</style>
<h1>Calculator</h1>
<iframe src="https://calculator.apps.chrome" frameborder="0"></iframe>
<head>
<style>
.footer {
position: right;
left: 0;
bottom: 0;
width: 100%;
background-color: grey;
color: white;
text-align: center;
}
</style>
</head>
<body>
<div class="footer">
<p><a href="dashboard.html" style="color: white;">Back to Dashboard</a></p>
<p><a href="/home/index.html" style="color: white;">Back to the NEW Dashboard</a></p>
</div>
</body>
</html>