-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
146 lines (125 loc) · 3.66 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="We are developing a 3D creation tool with AI.">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>Symbiote AI</title>
<link rel="icon"
type="image/png"
href="/assets/favicon.ico" />
<meta name="viewport" content="width=device-width">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-172399195-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-172399195-1');
</script>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/fontawesome.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Varela+Round" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Nunito:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i" rel="stylesheet">
<link href="css/grayscale.css" rel="stylesheet">
<style>
body {
background-color: #000000;
font-family: "Heebo", sans-serif;
font-weight: 300;
font-size: 14px;
color: #dddddd;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: "Heebo", sans-serif;
}
a {
color: #2196f3;
text-decoration: none;
}
a:hover,
a:focus {
color: #212df3;
text-decoration: none;
outline: none;
cursor: pointer;
}
input,
textarea {
outline: none;
box-shadow: none !important;
}
body > .container {
margin-top: 20px;
margin-bottom: 60px;
max-width: 750px;
}
h1 {
font-size: 32px;
font-weight: 100;
}
h2 {
font-size: 20px;
font-weight: 100;
margin-top: 50px;
}
h3 {
font-size: 16px;
font-weight: 100;
margin-top: 30px;
}
.box {
text-align: center;
text-transform: uppercase;
letter-spacing: 2px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
#title {
letter-spacing: 10px;
margin-top: 5rem;
margin-bottom: 3rem;
}
.box .logo {
color: #dddddd;
font-size: 42px;
font-weight: bolder;
}
.box p {
font-size: 16px;
}
#wave {
margin-bottom: 20px;
}
.box input, .box button {
padding: 1rem 2rem;
}
#email-form {
margin-bottom: 40px;
}
</style>
</head>
<body>
<div class="box">
<p id="title">Symbiote AI</p>
<form id="email-form" class="form-inline d-flex" style="margin-top: 0px;" onsubmit="submission(); return false">
<input type="email" class="form-control flex-fill mr-0 mr-sm-2 mb-3 mb-sm-0" id="inputEmail" placeholder="Enter email..." style="min-width: 280px" pattern="[a-zA-Z0-9.!#$%&’*+/=?^_`{|}~-]+@[a-zA-Z0-9-]+(?:\.[a-zA-Z0-9-]+)*" required>
<button type="submit" class="btn btn-dark mx-auto">Get Early Access</button>
</form>
<a href="https://carpedm30.notion.site"><p style="text-transform: none; font-size: 1em;">Who we are</p></a>
</div>
<script src="javascripts/oasis.js"></script>
<script src="javascripts/scale.fix.js"></script>
<script src="javascripts/main.js"></script>
</body>
</html>