-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.html
More file actions
65 lines (57 loc) · 2.3 KB
/
Copy pathabout.html
File metadata and controls
65 lines (57 loc) · 2.3 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
<!DOCTYPE html>
<html>
<head>
<!-- Title and Meta Data -->
<title>CMU Tours</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Stylesheets -->
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
crossorigin="anonymous">
<!-- Font -->
<link href="https://fonts.googleapis.com/css?family=Roboto:100,300,400" rel="stylesheet">
</head>
<body>
<!-- Navbar -->
<nav>
<div id="logo">
<img src="assets/img/CMU_Logo_Horiz_Red.png">
</div>
<div id="nav-icon" onclick="toggleNav()">
<span></span>
<span></span>
<span></span>
<span></span>
</div>
</nav>
<!-- Nav overlay -->
<div id="myNav" class="overlay">
<div class="overlay-content">
<a href="destinations.html">Destinations</a>
<hr>
<a href="about.html">About</a>
<hr>
<a href="map.html">Where am I?</a>
<hr>
<a href="contact.html">Contact</a>
</div>
</div>
<!-- Page Content -->
<main>
<h1>About Us</h1>
<p> Hi, we are a pittsburgh based web development group that loves building simple applications. Kenny Ritika AJ and
Bernard Systems, also known as KRABS, is up to any challenge to create simple scalable solutions. This app is
a navigation app used to find your place and where to go next on CMU's campus. Call or Hire us at <a>example@example.com</a>
</p>
</main>
</body>
<!-- JQuery -->
<script src="https://code.jquery.com/jquery-3.2.1.js" integrity="sha256-DZAnKJ/6XZ9si04Hgrsxu/8s717jcIzLy3oi35EouyE=" crossorigin="anonymous"></script>
<!-- Bootstrap -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
crossorigin="anonymous"></script>
<!-- Website Javascript -->
<script type="text/javascript" src="assets/js/functionality.js"></script>
<!-- Page Specific Javascript -->
<script type="text/javascript"></script>
</html>