-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
105 lines (93 loc) · 2.91 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
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
102
103
104
105
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, shrink-to-fit=no"
/>
<link
rel="apple-touch-icon"
sizes="180x180"
href="./assets/images/pyzero_logo_v1_light.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./assets/images/pyzero_logo_v1_light.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="./assets/images/pyzero_logo_v1_light.png"
/>
<link rel="shortcut icon" href="./assets/images/pyzero_logo_v1_light.png" />
<meta name="apple-mobile-web-app-title" content="pyzero" />
<meta name="application-name" content="pyzero" />
<meta name="msapplication-TileColor" content="#000000" />
<meta name="theme-color" content="#000000" />
<title>pyzero.com</title>
<style>
body,
html {
margin: 0px;
padding: 0px;
font-family: "Muli", sans-serif;
color: #4bff75;
background-color: black;
overflow: hidden;
}
.centered {
width: 100%;
margin: 0 auto;
text-align: center;
position: fixed;
top: 45%;
left: 50%;
-ms-transform: translateX(-50%) translateY(-50%);
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.overlay {
position: fixed;
width: 100%;
height: 100%;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.6);
}
</style>
<link href="./assets/css" rel="stylesheet" />
<link rel="stylesheet" href="./assets/style.css" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async="" src="./assets/js"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "UA-GG-ANALYTICS-ID-HERE");
</script>
</head>
<body cz-shortcut-listen="true">
<canvas id="canv" width="872" height="829"></canvas>
<script src="./assets/script.js"></script>
<div class="overlay"></div>
<div class="centered">
<img class="group-logo" src="./assets/images/pyzero_logo_v1_light.png" alt="">
<h1>pyzero</h1>
<h2>Machine Learning / Artificial Intelligence in Production</h2>
<img class="hands-icon" src="./assets/images/hands.png" alt="">
<div class="buttons">
<a class="pill-red double-border-red pill" href="https://github.com/pyzero-ml" rel="noopener noreferrer">Code</a>
<a class="pill-blue double-border-blue pill" href="https://blog.pyzero.com" rel="noopener noreferrer">Read</a>
</div>
</div>
</body>
</html>