-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (56 loc) · 1.97 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>PeerNet</title>
<link rel="stylesheet" href="./LandingPage.css">
<link rel="icon" type="image/x-icon" href="img/pnw-rbg.png">
</head>
<body>
<header>
<div class="header">
<nav class="navigation">
<a href="#" class="navbar-logo"><img src="img/prnetm-rbg.png" height="150px" ></a>
</nav>
</div>
</header>
<script>
window.addEventListener('mouseover', initLandbot, { once: true });
window.addEventListener('touchstart', initLandbot, { once: true });
var myLandbot;
function initLandbot() {
if (!myLandbot) {
var s = document.createElement('script');s.type = 'text/javascript';s.async = true;
s.addEventListener('load', function() {
var myLandbot = new Landbot.Livechat({
configUrl: 'https://storage.googleapis.com/landbot.online/v3/H-1469787-65QCG1GM0KMFPS7X/index.json',
});
});
s.src = 'https://cdn.landbot.io/landbot-3/landbot-3.0.0.js';
var x = document.getElementsByTagName('script')[0];
x.parentNode.insertBefore(s, x);
}
}
</script>
<div class="block">
<span></span>
<span></span>
<span></span>
<span></span>
</div>
<div class="text">
<h1>Welcome!</h1>
<p>
Hey there! Are you feeling a lack of belongingness after not being able to find friends who share similar
interests?
Or are you fed up of your regular food and are looking for good reccomendations from peers? Then look no
further!
You're at the right place!
</p>
<div class="button-area">
<a href="login.html">Login</a>
<a href="signup.html">Sign Up</a>
</div>
</div>
</body>
</html>