-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfaq.html
More file actions
138 lines (129 loc) · 8.22 KB
/
Copy pathfaq.html
File metadata and controls
138 lines (129 loc) · 8.22 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.0.0/animate.min.css"/>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css2?family=Muli:wght@400;500;600;700;800;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<link rel="icon" href="images/logo.png">
<title>CIRCLES</title>
</head>
<body class="animate__animated animate__fadeIn animate__slow">
<!------------------------------------------------------>
<!--NAVIGATION BAR-->
<!--Copy this from index.html if it changes-->
<!------------------------------------------------------>
<!------------------------------------------------------>
<nav class="navbar navbar-expand-lg navbar-light fixed-top bg-white">
<a class="navbar-brand" href="index.html">
<img src="images/logo.png" width="25" height="25">
CIRCLES
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Products
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="https://flow-project.github.io/" target="_blank">FLOW</a>
<a class="dropdown-item" href="https://github.com/DerekGloudemans/I24-MOTION-examples" target="_blank">I-24 MOTION</a>
<a class="dropdown-item" href="https://jmscslgroup.github.io/strym/" target="_blank">Strym</a>
<a class="dropdown-item" href="https://jmscslgroup.github.io/libpanda/" target="_blank">Libpanda</a>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Resources
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="videos.html">Videos</a>
</div>
</li>
<!-- <li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Resources
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="#">Demos</a>
<a class="dropdown-item" href="#">Videos</a>
<a class="dropdown-item" href="#">Publications</a>
</div>
</li> -->
<li class="nav-item">
<a class="nav-link" href="mailto:circles.consortium@gmail.com">Contact</a>
</li>
</ul>
</div>
</nav>
<!------------------------------------------------------>
<!--TITLE BLOCK-->
<!------------------------------------------------------>
<!------------------------------------------------------>
<div class="p-3 pt-md-5 bg-light">
<br>
<div class="row">
<div class="col-md-3 d-flex align-items-center justify-content-center">
<img class="img-about" src="images/undraw/about-mission.svg">
</div>
<div class="col-md-6 p-md-5 text-center">
<br>
<h1 class="display-4">Our Mission</h1>
<p class="lead">
We aim to improve the future of transportation and advance the convergence of artificial intelligence, simulation, traffic engineering, and vehicle technology in the context of mixed human-autonomous traffic.
</p>
</div>
<div class="col-md-3 d-flex align-items-center justify-content-center">
<img class="img-about" src="images/undraw/about-team.svg">
</div>
</div>
</div>
<!------------------------------------------------------>
<!--TEAM SECTIONS-->
<!------------------------------------------------------>
<!------------------------------------------------------>
<section id="team">
<div class="container">
<div class="py-3"></div>
<h1 class="text-center">
Frequently Asked Questions
<!-- <p style="color:grey; font-size:12px">Subtitle</p> -->
<hr class="title-hr"/>
</h1>
<a href=" https://docs.google.com/document/d/1haqX8zGm1SoV9WiWiQcJy7oRtMG_6kPIw8DSZ0XqguI/edit?usp=sharing">Click here to view Frequently Asked Questions</a>
<div class="py-3"></div>
</div>
</section>
<script>
function openTier(tierName) {
var i;
var x = document.getElementsByClassName("tier");
for (i = 0; i < x.length; i++) {
x[i].style.display = "none";
}
document.getElementById(tierName).style.display = "block";
}
</script>
<footer class="footer bg-light">
<div class="container p-3 text-center">
<span class="text-muted">© 2020 CIRCLES</span>
</div>
<div class="container p-3 text-center">
<span class="text-muted">This material is based upon work supported by the National Science Foundation under Grants CNS-1837244 (A. Bayen), CNS-1837652 (D. Work), CNS-1837481 (B. Piccoli), CNS-1837210 (G. Pappas), CNS-1446715 (B. Piccoli), CNS-1446690 (B. Seibold), CNS-1446435 (J. Sprinkle, R. Lysecky), CNS-1446702 (D. Work), CNS-2135579 (D. Work, A. Bayen, J. Sprinkle, J. Lee). This material is based upon work supported by the U.S. Department of Energy’s Office of Energy Efficiency and Renewable Energy (EERE) under the Vehicle Technologies Office award number CID DE-EE0008872. The views expressed herein do not necessarily represent the views of the U.S. Department of Energy or the United States Government.</span>
</div>
</footer>
<!-- JavaScript Scripts -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
</body>
</html>