-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.php
62 lines (55 loc) · 3.04 KB
/
about.php
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
<!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>about</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
</head>
<body>
<nav class="navbar navbar-expand-md bg-dark navbar-dark fixed-top">
<!-- Brand -->
<a class="navbar-brand" href="homepage.php">Logo</a>
<!-- Toggler/collapsibe Button -->
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#collapsibleNavbar">
<span class="navbar-toggler-icon"></span>
</button>
<!-- Navbar links -->
<div class="collapse navbar-collapse" id="collapsibleNavbar">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link active" href="about.php">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="faq.php">FAQ</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.php">Contact Us</a>
</li>
</ul>
</div>
</nav>
<div class="jumbotron">
<h1 class="display-4" align="center">About</h1>
<hr>
<br>
<p align="center">i.View is an interview package that will help companies and make it easier for them to hire employees. the website can be modified according to the company that is using it. We have included a personality test, True Colours, which assesses the personality of an individual and determines which color category they fit in, Blue, Green, Orange or Gold. Some jobs require more of a specific personality type. Moreover, this also helps HRs to create teams with compatible colour personality types to increase productivity. i.View also includes an aptitude test and a section on personal details. This will help the interviewers to get to know the candidates they are interviewing better.
</p>
</div>
</body>
</html>
<!-- <!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>Document</title>
</head>
<body>
<h1>About i.View</h1>
<br><br>
i.View is an interview package that will help companies and make it easier for them to hire employees. the website can be modified according to the company that is using it. We have included a personality test, True Colours, which assesses the personality of an individual and determines which color category they fit in, Blue, Green, Orange or Gold. Some jobs require more of a specific personality type. Moreover, this also helps HRs to create teams with compatible colour personality types to increase productivity. i.View also includes an aptitude test and a section on personal details. This will help the interviewers to get to know the candidates they are interviewing better.
</body>
</html> -->