-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (53 loc) · 2.32 KB
/
index.html
File metadata and controls
65 lines (53 loc) · 2.32 KB
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
61
62
63
64
65
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Friend Finder</title>
<link href="Landing Page/CSS/index.css" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet">
</head>
<body>
<header>
<nav>
<h1>Friend Finder</h1>
<a href="index.html">HOME</a>
<a href="#">FRIENDS</a>
<a href="#">MESSAGES</a>
<a href="about.html">TEAM</a>
<a href="https://friend-finder.misskellymore.now.sh/login">SIGN UP/SIGN IN</a>
</nav>
</header>
<section class="MainCards">
<section class="WhatIs">
<h1>What is Friend Finder?</h1>
<p>Here at Friend Finder, we think that it's just a bit too difficult to meet new friends that are
interested in the same things you are! We've all seen dating apps everywhere, but what if you're just
looking for a plutonic relationship? That's what we're here for!</p>
<img src="Landing Page/CSS/img/beautiful-cute-friends-1524105.jpg" class="friends1">
</section>
<section class="Mission">
<h1>Our Mission</h1>
<p>Our Mission at Friend Finder is to make finding friends just as easy as it is to find a partner in the
modern world! The dating environment has evolved with technology, but why hasn't the environment of
friendships? Enter, Friend Finder.</p>
<img src="Landing Page/CSS/img/backlit-dawn-friends-862848.jpg" class="friends2">
</section>
</section>
<section class="SignUp">
<h1>Make friends today!</h1>
<button onclick="window.location.href = 'https:friend-finder-levi.herokuapp.com';">Sign Up</button>
</section>
<footer>
<section class="FootNav">
<nav>
<a href="index.html">HOME</a>
<a href="#">FRIENDS</a>
<a href="#">MESSAGES</a>
<a href="about.html">TEAM</a>
<a href="https://friend-finder.misskellymore.now.sh/login">SIGN UP/SIGN IN</a>
</nav>
</section>
</footer>
</body>
</html>