This repository has been archived by the owner on Nov 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
107 lines (96 loc) · 4.43 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="en">
<head>
<!-- meta -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- link -->
<link rel="stylesheet" href="https://use.typekit.net/xwa6rly.css">
<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="css/index.css">
<link rel="icon" type="image/png" sizes="16x16" href="./favicon-16x16.png">
<!-- script -->
<script src="js/index.js" async></script>
<script src="js/navbar.js" async></script>
<!-- title -->
<title>MentorMe | Lambda Build Week</title>
</head>
<body>
<nav class='navbar'>
<div class=navbar-container>
<a class='navbar-logo' href='./index.html'><span class='fas fa-graduation-cap'></span> MentorMe</a>
<button class='hamburger-links fas fa-bars'></button>
</div>
<ul class='navbar-links'>
<li class='navbar-item'>
<a class='navbar-link' href='./index.html'>Home</a>
</li>
<li class='navbar-item'>
<a class='navbar-link' href='./about.html'>About</a>
</li>
<li class='navbar-item'>
<a class='navbar-link' href='./contact.html'>Contact Us</a>
</li>
<li class='navbar-item'>
<a class='navbar-link' href='https://mentor-me-ls.netlify.com'>Login</a>
</li>
</ul>
</nav>
<header class='header'>
<div class='header-content'>
<h1><span class='fas fa-graduation-cap'></span> MentorMe</h1>
<p>Lend your business skills to other entrepreneurs across the globe or learn from the best of the best!</p>
<a href='https://mentor-me-ls.netlify.com' class='btn login'>Get Started</a>
<a href='#intro' class="btn lrn-more">Learn More</a>
</div>
</header>
<a class='intro-container' name='intro'>
<h2>Learn, Share, Grow</h2>
<div class='short-divider'></div>
<p>Millions of questions answered by experienced <br>
and established professionals.</p>
</a>
<div class='middle-container'>
<section class='content-container'>
<div class='text-container'>
<h3>Ask Questions</h3>
<p>Banged your head against a wall for the past few days? Wait no more! Search through millions of answered questions. <br>
Can't find an answer to your question? Post a new question! Typical response times range from a few minutes to a few hours only!</p>
</div>
<img src='./images/phone.jpg' alt>
</section>
<section class='content-container'>
<div class='text-container'>
<h3>Provide Answers</h3>
<p>Are you an experienced professional looking to help grow your community? Answer questions and connect with new and upcoming entrepreneurs today!</p>
</div>
<img src='./images/desk.jpg' alt>
</section>
<section class='content-container'>
<div class='text-container'>
<h3>Make New Connections</h3>
<p>Meet professionals working in similar fields to grow your professional network. Increase your visibility among professional organizations, associations, and other groups.</p>
</div>
<img src='./images/city.jpg' alt>
</section>
</div>
<div class='bottom-container'>
<h2>Learn better, together</h2>
<p>Don't be stuck. Build a more efficient, innovative organization today! <br>
Experience a learning platform above all others</p>
<div class='short-divider'></div>
<div class='button-container'>
<a href='https://mentor-me-ls.netlify.com' class='btn login'>Get Started</a>
</div>
</div>
<footer class='footer'>
<div class='icons-container'>
<span class='fab fa-facebook-f fa-3x'></span>
<span class='fab fa-twitter fa-3x'></span>
<span class='fab fa-instagram fa-3x'></span>
</div>
<p>© Untitled. Credits: <a href='https://html5up.net/'>HTML5 UP</a> + <a href='https://unsplash.com/'>Unsplash</a></p>
</footer>
</body>
</html>