-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.html
More file actions
64 lines (51 loc) · 2.09 KB
/
about.html
File metadata and controls
64 lines (51 loc) · 2.09 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
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>About Us </title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/css/about.css">
<script type="text/javascript" src="js/code.js"></script>
<script type="text/javascript">
document.addEventListener('DOMContentLoaded', function()
{
readCookie();
}, false);
</script>
</head>
<body>
<!--HEADER WITH NAVBAR-->
<header>
<img class="logo" src="images/logo-removebg-preview.png" alt="logo" onclick="location.href='/contact.html'">
<p> Pair-A-Dice Contact Manager</p>
<nav>
<ul class="nav_links">
<li class="li_a_button_group"><a href="/contact.html" class="li_a_button_group">Contacts</a></li>
<li class="li_a_button_group"><a href="/about.html" class="li_a_button_group">About</a></li>
<li id="userName"></li>
</ul>
</nav>
<!--Logout button-->
<a class="cta" href="#"><button class="li_a_button_group" id="btn" onclick="doLogout()">Log Out</button></a>
</header>
<br />
<section>
<div class = "image">
<img id="clown_img" src="/images/aboutuspicture.jpg">
</div>
<div class = "content">
<h2>About Us</h2>
<span><!-- line here --></span>
<p>Front End : Andy Gelfo, Emmanuel Levasseur
<br>Data Base : Thomas Nguyen
<br>API : Ved Arnav Singh , Andrew Anchieta
<br>Project Manager : Evan Daniel</p>
<span><!-- line here --></span>
<h3 class="github">
<a href="https://github.com/Evasionally/ProcessesContactManager">Our GitHub</a>
</h3>
</div>
</section>
<br><br>
</body>
</html>