-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdemo.html
41 lines (35 loc) · 1.18 KB
/
demo.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
<!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>Demo</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="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"><!--BrainGPT logo in the top right corner-->
<img src="images/logo.png" class="logo">
<div class="content">
<!---- <div class="exp-button">
<a href="https://google.com" class="button"><span>Google Forms</span></a> --->
<h2> Coming soon.</h2>
</div>
</div>
</div>
</body>
</html>