-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (36 loc) · 1.14 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<link rel="shortcut icon" href="/icons/calc.ico" type="image/x-icon">
<meta http-Equiv="Cache-Control" Content="no-cache" />
<meta http-Equiv="Pragma" Content="no-cache" />
<meta http-Equiv="Expires">
<meta property="og:url" content="" />
<meta property="og:type" content="Calculator" />
<meta property="og:title" content="PPC Programming Calculator" />
<meta property="og:description" content="Simple calculator for doing math while programming." />
<meta property="og:image" content="" />
<style>
body {
height: 100%;
width: 100%;
text-align: center;
background-color: #333333;
}
#onlyDiv {
width: 300px;
height:310px;
border: 1px solid black;
position: absolute;
top : calc((100% - 312px) / 2);
left : calc((100% - 302px) / 2);
}
</style>
</head>
<body>
<div id="onlyDiv">
<iframe width="300" height="310" src="calc.html" scrolling="no" style="border: 1px solid black; font-size:10%;">
</iframe>
</div>
</body>
</html>