-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
99 lines (84 loc) · 3.97 KB
/
index.html
File metadata and controls
99 lines (84 loc) · 3.97 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
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Dev Desk Queue - Home</title>
<link rel="icon" href="/Images/favicon.png">
<link rel="stylesheet" type="text/css" href="CSS/index.css" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="/JavaScript/smoothScroll.js" async></script>
</head>
<body>
<nav>
<img class = "logo" src="/Images/Lambda_Logo.png" /><!-- Left side of nav-->
<div class="nav-link-cont"><!-- Right Side Of Nav-->
<a class = "hiw" href="#how">How It Works</a>
<a class="btn" href="https://upbeat-wescoff-94ecaa.netlify.com/">Login</a>
</div>
</nav>
<header>
<div class="header-cont"><!-- Header container-->
<div class="signup-cont"> <!-- Signup container-->
<h1>A Tool Designed For Rapid Problem Solutions</h1>
<a href="https://upbeat-wescoff-94ecaa.netlify.com/" class="btn">Sign Up</a>
</div>
</div>
</header>
<section id="how"><!-- How the queue works-->
<h2 class="htqw">How The <span class="que">Queue</span> Works</h2>
<div class="card"> <!-- Card container-->
<div><!-- A card-->
<img
src="/Images/iconfinder_Help_mark_query_question_support_talk_271504.svg"
/>
<h2>Have a concern?</h2>
<h3>
Do you have an issue, or concern, that you're just having trouble
solving on your own?
</h3>
</div>
<div> <!-- A card-->
<img src="/Images/chat.svg" />
<h2>Post your question</h2>
<h3>
Sign up for the Queue. Log in, and ask away with whatever it is
that's gotten you held up from productivity.
</h3>
</div>
<div><!-- A card-->
<img src="/Images/jigsaw.svg" />
<h2>Get an answer!</h2>
<h3>
One of our helpers will get to the ticket and help you solve the
issue at hand, with you being the #1 priority!
</h3>
</div>
</div>
<div>
</div>
</section>
<footer> <!-- Footer Links-->
<div class="foot-link-cont">
<a href="https://upbeat-wescoff-94ecaa.netlify.com/">Login</a>
<a href="https://upbeat-wescoff-94ecaa.netlify.com/">Sign Up</a>
<a href="/Pages/about.html">Our Team</a>
<a href="https://lambdaschool.com/faq/" target="_blank">Support</a>
<a href="/Pages/legal.html">Legal</a>
<a href="/Pages/privacy.html">Privacy</a>
<a href="https://twitter.com/lambdaschool" target="_blank"><i class="fab fa-twitter"></i></a>
<a href="https://www.facebook.com/LambdaSchoolOnline/" target="_blank"><i class="fab fa-facebook-square"></i></a>
<a href="https://github.com/LambdaSchool" target="_blank"><i class="fab fa-github"></i></a>
</div>
<a href="https://lambdaschool.com/" target="_blank"><img src="/Images/Lambda_Logo_white.png" /></a> <!-- Lambda Logo-->
<!-- For the creator of the icons-->
<div><a class = "clickerdoo" onclick="reveal()">Credits</a></div>
<div class="rec"> Icons made by<a href="https://www.flaticon.com/authors/smashicons"title="Smashicons">Smashicons</a>,<a href="https://www.flaticon.com/authors/monkik" title="monkik">monkik</a>
from
<a href="https://www.flaticon.com/" title="Flaticon">www.flaticon.com </a >is licensed by<a href="http://creativecommons.org/licenses/by/3.0/" title="Creative Commons BY 3.0"target="_blank" >CC 3.0 BY</a >
</div>
</footer>
</body>
</html>