-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsignup.html
45 lines (40 loc) · 1.38 KB
/
signup.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-14TNT3WGGV"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-14TNT3WGGV');
</script>
<title>Sign-up</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<nav class="navbar">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="signup.html">Sign-up</a></li>
<li><a href="news.html">News</a></li>
<li><a href="demo.html">Demo</a></li>
<li><a href="team.html">Team</a></li>
</ul>
</nav>
<div class="banner">
<img src="images/logo.png" class="logo">
<div class="content">
<h2>
Sign-up.<!---Google Forms --->
</h2>
<p>
If you would like to gain early access to BrainGPT, receive a monthly update, or provide us with feedback, please press the button below.
</p>
<div class="exp-button">
<a href="https://docs.google.com/forms/d/e/1FAIpQLSffnG45CrQOnp8c8X1MN1mZPK1JEsrgzcvf1sFrmwc18ozXjw/viewform" class="button"><span>Register your interest</span></a>
</div>
</div>
</div>
</body>
</html>