-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreviews.html
125 lines (106 loc) · 5.85 KB
/
reviews.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
<!DOCTYPE html>
<html lang="en">
<head>
<!--META DATA-->
<meta charset="UTF-8">
<title>Bug Tracker</title>
<meta name="description" content="Short description goes here">
<meta name="keywords" content="1, 2, 3, 4, 5, 6, 7, 8, 9, 10">
<meta name="viewport" content="width=device-width, initial-scale =1.0">
<!--STYLESHEETS, NORMALIZE, GRID, AND FONT TYPE-->
<!--<link rel="stylesheet" type="text/css" href="Resources/css/queries.css">-->
<link rel="stylesheet" type="text/css" href="Resources/css/grid.css">
<link rel="stylesheet" type="text/css" href="Resources/css/normalize.css">
<link rel="stylesheet" type="text/css" href="Resources/css/style.css">
<link href="https://fonts.googleapis.com/css?family=Lato:100,300,300i,400&display=swap" rel="stylesheet">
<link href="https://unpkg.com/[email protected]/dist/css/ionicons.min.css" rel="stylesheet">
<link rel="icon" href="Resources/images/Logo1.png">
<script src="Resources/js/jquery.1.js"></script>
<script src="Resources/js/main.js"></script>
</head>
<body>
<header class="alt-header review-page">
<nav>
<div class="row">
<div class = "logo-box">
<img src="Resources/images/Logo2.png" alt="Scarab Logo" class="logo">
<h3>Scarab</h3>
</div>
<ul class="main-nav">
<li><a href="index.html">HOME</a></li>
<li><a href="reviews.html">REVIEWS</a></li>
<li><a href="login.html">LOG IN</a></li>
</ul>
</div>
</nav>
</header>
<section class="reviews">
<div class = "row">
<h2>Reviews</h2>
<p class="long-copy"> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna
aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis
aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint
occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</p>
</div>
<div class = "row">
<div class = "col span-1-of-2">
<div id="slider">
<ul class="slides">
<li class="slide"><blockquote>As the manager of a small consulting firm, Scarab let's me be everywhere at once.
Scarab allows me to see submitted bugs and ticket requests in real time and assign them to people on my team.
</blockquote><cite><img src="Resources/images/reviewer1.jpg"></cite><p>Cayde Hunter</p></li>
<li class="slide"><blockquote>Scarab's great because I don't need to be in the office to do my job anymore. Whether I'm working from home,
or getting caught up in a coffee shop, I can get it done with Scarab.
</blockquote><cite><img src="Resources/images/reviewer2.jpg"></cite><p>Ikora Rey</p></li>
<li class="slide"><blockquote>My team couldn't survive without Scarab! I work for a Fortune 500 company, and I've never met
my teammates off of Skype. When you're answering tickets and fixing bugs with people from offices across the globe, Scarab won't let you down
</blockquote><cite><img class="flat-bottom" src="Resources/images/reviewer3.jpg"></cite><p>Nadja Andre</p></li>
<li class="slide"><blockquote>I've been using Scarab as a freelancer for two years, and I could never use another bug tracker. I use Scarab as my mobile
to-do list. It helps me keep track of all the projects I'm working on, the issues that have popped up in each project, and keep it all organized!
</blockquote><cite><img src="Resources/images/reviewer4.jpg"></cite><p>Zavala Titan</p></li>
<li class="slide"><blockquote>As the manager of a small consulting firm, Scarab let's me be everywhere at once.
Scarab allows me to see submitted bugs and ticket requests in real time and assign them to people on my team.
</blockquote><cite><img src="Resources/images/reviewer1.jpg"></cite><p>Cayde Hunter</p></li>
</ul>
</div>
</div>
<div class = "col span-1-of-2">
<h4>Just some of the companies that trust our services</h4>
<div class="company-list">
<ol class = "companies">
<li>Amazon</li>
<li>Wal-Mart</li>
<li>Microsoft</li>
<li>Uber</li>
<li>And so many more...</li>
</ol>
</div>
</div>
</div>
</section>
<footer>
<div class="row">
<div class="col span-1-of-2">
<ul class="footer-nav">
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">A Fourth Option</a></li>
</ul>
</div>
<div class="col span-1-of-2">
<ul class="social-links">
<li><a href="#">Facebook</a></li>
<li><a href="#">Twitter</a></li>
<li><a href="#">Instagram</a></li>
<li><a href="#">LinkedIn</a></li>
</ul>
</div>
<div class="row">
<p>Copyright© 2020</p>
</div>
</div>
</footer>
</body>
</html>