-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTestimonials.html
157 lines (145 loc) · 5.46 KB
/
Testimonials.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
146
147
148
149
150
151
152
153
154
155
156
157
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>SumIT - Everything you need for IT</title>
<link rel="stylesheet" href="bootstrap-4.1.3-dist/css/bootstrap.min.css">
<link rel="stylesheet" href="Testimonials.css">
<link rel="stylesheet" href="css/fixed.css">
</head>
<body>
<div id="Top"> <!--- Start Top Section -->
<!--- Navigation Bar -->
<nav class="navbar navbar-expand-md navbar-dark bg-dark fixed-top">
<a class="navbar-brand" href="Home.html"><img src="img/Sumit.png"></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#theNavbar">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="theNavbar">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="Home.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="Summaries.html">Summaries</a>
</li>
<li class="nav-item">
<a class="nav-link" href="Tutorials.html">Tutorials</a>
</li>
<li class="nav-item">
<a class="nav-link" href="Self-help.html">Self-help</a>
</li>
<li class="nav-item">
<a class="nav-link" href="Testimonials.html">Testimonials</a>
</li>
<li class="nav-item">
<a class="nav-link" href="Contact.html">Contact</a>
</li>
</ul>
</div>
</nav> <!--- End Navigation Bar -->
<!-- Picture -->
<div class="dark">
<div class="row picture">
<img src="img/catalyst1.jpg">
</div>
<div class="caption text-center">
<h1>Welcome to SumIT</h1>
<h3>The home of IT students, for IT students, by IT students</h3>
</div> <!-- End Landing Page section -->
</div>
</div> <!--- End Top Section -->
<!-- Start Testimonials Section-->
<div id="testimonials" class="offset">
<!-- Start Jumbotron -->
<div class="jumbotron">
<div class="col-12 text-center">
<h3 class="heading">Testimonials</h3>
<div class="heading-underline"></div>
</div>
<div class="row">
<div class="col-md-6 testimonials">
<div class="row">
<div class="col-lg-4 col-md-6">
<img src="img/Student 1.jpg">
</div>
<div class="col-lg-8 col-md-6">
<blockquote>
<i class="fas fa-quote-left"></i>
Back in my days, we had to learn almost everything by ourselves. I wish we had this platform back then.
<hr class="testimonials-hr">
<cite>—Vương Thị Mỹ Uyên </cite>
</blockquote>
</div>
</div>
<div class="row">
<div class="col-lg-4 col-md-6">
<img src="img/student 3.jpg">
</div>
<div class="col-lg-8 col-md-6">
<blockquote>
<i class="fas fa-quote-left"></i>
I checked all the contents of this website and concluded that, yep, this is the only thing you'll ever need to ace through the entire IT program.
<hr class="testimonials-hr">
<cite>—Nicholas J. Campbell </cite>
</blockquote>
</div>
</div>
</div>
<div class="col-md-6 testimonials">
<div class="row">
<div class="col-lg-4 col-md-6">
<img src="img/student 2.jpg">
</div>
<div class="col-lg-8 col-md-6">
<blockquote>
<i class="fas fa-quote-left"></i>
I've already graduated, but this website would have saved me so much time and effort if it was founded earlier.
<hr class="testimonials-hr">
<cite>—James L. Ortiz</cite>
</blockquote>
</div>
<div class="row">
<div class="col-lg-4 col-md-6">
<img src="img/student 4.jpg">
</div>
<div class="col-lg-8 col-md-6">
<blockquote>
<i class="fas fa-quote-left"></i>
I've always used Udemy and Lynda to study programming and thought that those 2 are the best options. I guess it's time to reconsider.
<hr class="testimonials-hr">
<cite>—Julie S. Valentine </cite>
</blockquote>
</div>
</div>
</div>
</div>
</div> <!-- End Row -->
</div> <!-- End Jumbotron -->
<!-- Start Contact Section-->
<div id="contact" class="offset">
<footer style="margin-top: -1.9rem">
<div class="row justify-content-center">
<div class="col-md-5 text-center">
<img src="img/Sumit.png" style="margin-top: -1.3rem">
<p>At our core, we are a bunch of RMIT trolls who simply love good laughs and are working very diligently to make you enjoy studying and teaching here as much as us.</p>
<strong>Contact Info</strong>
<p>(666) 613-4444 <br>[email protected]</p>
<a href="https://www.facebook.com/profile.php?id=100016991286991" target="_blank"><i class="fab fa-facebook-square"></i></a>
<a href="https://help.twitter.com/en/twitter-guide" target="_blank"><i class="fab fa-twitter-square"></i></a>
<a href="https://help.instagram.com/454502981253053/" target="_blank"><i class="fab fa-instagram"></i></a>
</div>
<hr class="socket">
© 2019 SumIT. All Rights Reserved
</div>
</footer>
</div> <!-- End Contact Section-->
</div> <!-- End Testimonials Section-->
</body>
<!--- Script Source Files -->
<script src="js/jquery-3.3.1.min.js"></script>
<script src="bootstrap-4.1.3-dist/js/bootstrap.min.js"></script>
<script src="https://use.fontawesome.com/releases/v5.5.0/js/all.js"></script>
<!--- End of Script Source Files -->
</html>