-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.html
More file actions
73 lines (63 loc) · 2.89 KB
/
about.html
File metadata and controls
73 lines (63 loc) · 2.89 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
<!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>g2Skywalker Development Team</title>
<!--Google Fonts-->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Muli|Roboto&display=swap">
<!--Meyerweb CSS Reset file-->
<link rel="stylesheet" type="text/css" href="assets/css/reset.css">
<!--Bootstrap CSS file-->
<link rel="stylesheet" type="text/css"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
<!--jQuery UI CSS file-->
<link rel="stylesheet" type="text/css" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<!--Team CSS file-->
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
</head>
<body>
<header>
<p class="h1 text-white text-center">Rendez-vous</p>
<p class="h4 text-white text-center font-weight-light font-italic">Your Easy Date Night Planner!</p>
</header>
<div class="row" id="spacer">
<p></p>
</div>
<div class="container" id="info-box">
<div class="card text-center justify-content-center">
<h5 class="card-header bg-primary text-white">Project No. 1 Development Team</h5>
<div class="card-body">
<p class="card-text text-center">
<ul>
<li><h2>Sonal Bhoraniya</h2></li>
<li><h2>Chantal Eshghipour</h2></li>
<li><h2>Jyochsna Gongal</h2></li>
<li><h2>Matthew Harris</h2></li>
<li><h2>Pam Kelly</h2></li>
</ul>
</p>
<a href="index.html" class="btn btn-lg btn-info btn-block">Home</a>
</div>
<div class="card-footer text-muted text-center">
UC Berkeley Extension Full-Stack Bootcamp
</div>
</div>
</div>
<footer>
<h6>© Copyright 2020 | <a href="about.html">Development Team</a></h6>
</footer>
<!--jQuery and jQueru UI JS files-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js" type="text/javascript"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js" type="text/javascript"></script>
<!--Bootstrap JS file-->
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"
type="text/javascript"></script>
<!--Firebase JS files-->
<script src="https://www.gstatic.com/firebasejs/6.0.4/firebase-app.js" type="text/javascript"></script>
<script src="https://www.gstatic.com/firebasejs/6.0.4/firebase-database.js" type="text/javascript"></script>
<!--Team JS file-->
<script src="assets/javascript/app.js" type="text/javascript"></script>
</body>
</html>