-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
145 lines (133 loc) · 4.37 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Mentors International</title>
<link rel="stylesheet" href="css/index.css" />
<link
href="https://fonts.googleapis.com/css?family=Comfortaa|Open+Sans|Roboto"
rel="stylesheet"
/>
<script type="text/javascript" src="index.js" async></script>
</head>
<body>
<div class="container">
<div class="blue-container">
<header class="site-nav">
<div class="top-bar">
<h1>mentors international</h1>
<nav>
<a class="link" href="index.html">Home</a>
<a
class="link"
href="https://wizardly-dubinsky-1d76bc.netlify.com/aboutpage"
>About</a
>
<a class="link" href="https://mentors-international.netlify.com"
>Log In</a
>
</nav>
<div
onClick="window.location.href='https://mentors-international.netlify.com'"
class="button"
>
SIGN UP
</div>
</div>
</header>
<div class="banner">
<div class="description">
<h2 class="text-focus-in">
Helping people connect without the effort.
</h2>
<p class="tracking-in-expand">
Our messaging app saves time by helping our mentors text message
with mentee entrepreneurs all over the world.
</p>
<br />
<p class="tracking-in-expand">
We make it easier for mentors to send out reminders as well as
communicate with students about upcoming meetings.
</p>
</div>
<div class="carousel">
<div class="left-button text-focus-in"><</div>
<img
class="text-focus-in"
src="/images/laptop.jpg"
alt="laptop picture"
/>
<img
class="text-focus-in"
src="/images/adults.jpg"
alt="adults picture"
/>
<img
class="text-focus-in"
src="/images/womenandman.jpg"
alt="women and man picture"
/>
<div class="right-button text-focus-in">></div>
</div>
</div>
<!--banner end-->
</div>
<div class="white-container">
<div class="countries">
<h3>COUNTRIES WE CONNECT WITH</h3>
<ul>
<li>Phillipines</li>
<li>Guatamala</li>
<li>El Salvador</li>
<li>Honduras</li>
<li>Peru</li>
<li>Ghana</li>
</ul>
</div>
<div class="features">
<h1 class="text-focus-in">Keep in touch with the right tools.</h1>
<div class="feature">
<img
class="slide-in-left"
src="/mentoricons/plane-trip-international.png"
alt="this will be a logo"
/>
<p class="tracking-in-expand">
Our email messaging to text reminder app lets our mentors connect
with their mentees directly internationally without having to
worry about international codes.
</p>
</div>
<div class="feature">
<img
class="slide-in-left"
src="/mentoricons/send-email-2.png"
alt="this will be a logo"
/>
<p class="tracking-in-expand">
Create and save messages to be sent via text using Twilio's API.
The ability to reach students through texting means open
communication between all parties.
</p>
</div>
<div class="feature">
<img
class="slide-in-left"
src="/mentoricons/mood-happy.png"
alt="this will be a logo"
/>
<p class="tracking-in-expand">
Effective communication between mentor mentee pairs leaves both
sides of the relationship feeling connected and happy.
</p>
</div>
</div>
<footer>
<!-- <p>Copyright 2019</p> -->
</footer>
</div>
</div>
<!--container end-->
</body>
</html>