-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathabout-us.html
More file actions
75 lines (65 loc) · 2.79 KB
/
about-us.html
File metadata and controls
75 lines (65 loc) · 2.79 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
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta http-equiv="X-UA-Compatible" content="ie=edge"/>
<title>About Us - Predictaventure</title>
<link href="https://fonts.googleapis.com/css?family=Heebo:400,500,800,900%7CLato:400,700,900%7COpen+Sans:400,400i,700,800%7CRoboto:400,400i,500,700,900" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
<link rel="stylesheet" href="./public/css/index.css" type="text/css"></link>
<script src="./public/components/TeamSection/TeamSection.js" async></script>
</head>
<body>
<header id="top-header" class="border-bottom">
<div class="container">
<div class="row">
<div class="col-12 col-md-4">
<a href="index.html">
<h2 class="logo">predicta<span>venture</span></h2>
</a>
</div>
<div class="col-12 col-md-8 d-flex justify-content-end align-items-center">
<input type="checkbox" id="nav" class="hidden">
<label for="nav" class="nav-button">
<div class="button-line"></div>
<div class="button-line"></div>
<div class="button-line"></div>
</label>
<nav>
<div class="mobile-nav-container">
<a href="index.html#features-section" class="px-1">Features</a>
<a href="index.html#case-study-section" class="px-1">Case Study</a>
<a href="index.html#methodology-section" class="px-1">Methodology</a>
<a href="about-us.html" class="px-1 nav-active">About Us</a>
<a href="https://predict-a-venture.netlify.com/">Login</a>
</div>
</nav>
</div>
</div>
</div>
</header>
<section id="title-section">
<div class="container">
<div class="row">
<div class="col-12">
<h1 class="pt-5 mt-5">About Us</h1>
<p>Our mission is to introduce a new tool for predicting start-up success.</p>
</div>
</div>
</div>
</section>
<section id="team-section" class="py-5"></section>
<footer class="bg-grey-333 text-white">
<div class="container">
<div class="row">
<div class="col-12 pt-2 text-center">
<p>© 2019 Predictaventure. All rights reserved.</p>
</div>
</div>
</div>
</footer>
<script src="https://unpkg.com/scrollreveal/dist/scrollreveal.min.js"></script>
<script src="./public/js/sr-functions.js" async></script>
</body>
</html>