-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
86 lines (75 loc) · 3.1 KB
/
Copy pathabout.html
File metadata and controls
86 lines (75 loc) · 3.1 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
76
77
78
79
80
81
82
83
84
85
86
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>DevDesk Queue</title>
<link href="https://fonts.googleapis.com/css?family=PT+Sans" rel="stylesheet">
<link href="css/about.css" rel="stylesheet">
<script src="js/about.js" async></script>
<!--[if lt IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<header class="main-navigation">
<div class="container nav-container">
<h1 class="logo-heading">DevDesk Queue</h1>
<nav class="nav">
<a class="nav-link" href="index.html">Home</a>
<a class="nav-link" href="#">About Us</a>
<!-- <a class="nav-link" href="#">Create Ticket</a> -->
<a class="nav-link" href="https://devdesk-queue.netlify.com/">Login</a>
</nav>
</div>
</header>
<div class="container home">
<header class="intro">
<img src="img/campaign-creators-1166991-unsplash.jpg" alt="computer" class="compimg">
<h2>Who We Are</h2>
<p>DevDesk Queue is a simple platform to get that extra hand while you are coding.</p>
</header>
<div> <h2>Our Team</h2> </div>
<section class="content-section">
<div class="text-content">
<h4>Vera Simon</h4>
<p>Our Team Leader, she is in charge on making sure that all the sections in the projects run in perfect condition.</p>
<p>Lambda School alumni, Computer Science background.</p>
</div>
<div class="img-content">
<img src="img/corinne-kutz-211251-unsplash.jpg" alt="top-view-computer">
</div>
</section>
<section class="content-section inverse-content">
<div class="img-content">
<img src="img/adeolu-eletu-13086-unsplash.jpg" class="img-fluid rounded" alt="mobile">
</div>
<div class="text-content">
<h4>Michael Gunter</h4>
<p> Our Frontend Engineer, he makes music and reads in his spare time. He is responsible of the frontend features & UI Components, which interact with the backend.</p>
<p>He is currently at Lambda School studying to be a Software Engineer.</p>
</div>
<div class="text-content">
<h4>Ashley Cruz</h4>
<p>Our Web Designer, in her spare time you can find her camping and hiking.</p>
<p>She is currently at Lambda School studying to be a Web Developer.</p>
</div>
<div class="img-content">
<img src="img/carlos-muza-84523-unsplash.jpg" alt="top-view-computer">
</div>
</section>
<section class="content-section inverse-content">
<div class="img-content">
<img src="img/hans-vivek-208969-unsplash.jpg" class="img-fluid rounded" alt="mobile">
</div>
<div class="text-content">
<h4>Jenuel Mendez</h4>
<p> Our Backend Engineer, he is a musician and is currently at Lambda School studying to be a Software Engineer.</p>
<p>He is responsible for all data Migrations and Seeds set up for mock data.</p>
</div>
</section>
</div><!-- container -->
<footer class="footer">
<p>Copyright DevDesk Queue 2019</p>
</footer>
</body>
</html>