-
Notifications
You must be signed in to change notification settings - Fork 0
/
faq.html
60 lines (56 loc) · 2.72 KB
/
faq.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
<!DOCTYPE html>
<html>
<head>
<link rel="icon" href="/art/ezFavi.png">
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<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>FAQ</title>
<link rel="stylesheet" href="/faqStyles/styles.css">
</head>
<body>
<!--Start of body, putting nav bar first-->
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="home.html">
<img src="/art/ezSVG.svg" alt="Easy Intern" height="30" class="d-incline-block align-top">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item active">
<a class="nav-link" href="home.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="index.html">Register</a>
</li>
<li class="nav-item">
<a class="nav-link" href="login.html">Login</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact Us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="faq.html">FAQ</a>
</li>
<!-- Add more links as needed -->
</ul>
</div>
</nav>
<!--if we make a change to this nav bar we have to copy and paste it to all other pages, this is what frameworks like react and vue solve-->
<h1>Frequently Asked Questions</h1>
<div class="bulletPoints">
<details>
<summary>What is Easy Intern?</summary>
<p>Easy Intern is a platform that helps students apply to hundreds of internships at once with a simple process.</p>
</details>
<details>
<summary>How does Easy Intern work?</summary>
<p>We work with different companies in a variety of industries and give them a full representation of our applicants. Our straightforward process takes about 20 minutes and puts you in front of hundreds of different companies.</p>
</details>
<!-- add more FAQ items as needed -->
</div>
</body>
</html>