-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlander.html
More file actions
33 lines (29 loc) · 825 Bytes
/
Copy pathlander.html
File metadata and controls
33 lines (29 loc) · 825 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Welcome to Loop.</title>
<link rel="stylesheet" href="landerstyle.css" />
<style>
@import url('https://fonts.googleapis.com/css2?family=Stack+Sans+Notch:wght@200..700&display=swap');
</style>
</head>
<body>
<div class="container">
<img src="Loop.png" alt="Loop Logo" class="logo" />
<p>
<br>
A simple social network built for people, not algorithms.<br>
Share. Talk. Stay connected.
</p>
<div class="buttons">
<a href="#" class="button primary">Get Started</a>
<a href="#" class="button secondary">Learn More</a>
</div>
<footer>
Open-source. No ads. No tricks.
</footer>
</div>
</body>
</html>