-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathexperiment.html
49 lines (42 loc) · 1.69 KB
/
experiment.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
<!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>Experiment</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body><!--Main body of the page-->
<nav class="navbar"> <!-- Adding navbar with links to subpages-->
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="signup.html">Sign-up</a></li>
<li><a href="experiment.html">Experiment</a></li>
<li><a href="demo.html">Demo</a></li>
<li><a href="https://bradlove.org/lab">Lab</a></li>
</ul>
</nav>
<div class="banner"> <!--BrainGPT logo in the top right corner-->
<img src="images/logo.png" class="logo">
<div class="content">
<h2>
Coming soon. <!---Behavioural experiment --->
</h2>
<p><!--Text paragraph: Description of the experiment and instructions?-->
<!--If you are an academic in the field of neuroscience, please consider completing this behavioural experiment.<br><br>
The experiment will be used to assess the performance of our model (demo).<br><br>
You will be granted access to an early beta tester when it is available. --->
</p>
<!-- <div class="exp-button">
<a href="https://bing.com" class="button"><span>Experiment</span></a>-->
</div>
</div>
</div>
</body>
</html>