-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsafecities.html
116 lines (93 loc) · 2.98 KB
/
safecities.html
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
<!DOCTYPE html>
<html>
<head>
<title>Safe Cities</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.2/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.2/dist/js/bootstrap.bundle.min.js"></script>
<style type="text/css">
.carousel-inner img{
width: 100%;
height: 80vh;
}
h3{
color: skyblue;
}
p1{
color: black;
background-color: violet;
}
p{
color: darkblue;
size: ;
}
h1{
color: darkblue;
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-sm bg-light justify-content-center" >
<div class="container-fluid">
<!-- Links -->
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="safecities.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="ourservices.html">Our Services</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contactus.html">Contact Us</a>
</li>
</ul>
</div>
</nav>
<!-- Carousel -->
<div id="demo" class="carousel slide" data-bs-ride="carousel">
<!-- Indicators/dots -->
<div class="carousel-indicators">
<button type="button" data-bs-target="#demo" data-bs-slide-to="0" class="active"></button>
<button type="button" data-bs-target="#demo" data-bs-slide-to="1"></button>
</div>
<!-- The slideshow/carousel -->
<div class="carousel-inner">
<div class="carousel-item active">
<img src="1.png" alt="Los Angeles" class="d-block" style="width:100%">
<div class="carousel-caption">
<h1>Safe Cities</h1>
<p>Innovation to Build Safe Cities</p>
</div>
</div>
<div class="carousel-item">
<img src="2.jpg" alt="Chicago" class="d-block" style="width: 100%;">
<div class="carousel-caption">
<p>Intelligent Traffic Management and Control</p>
</div>
</div>
</div>
<!-- Left and right controls/icons -->
<button class="carousel-control-prev" type="button" data-bs-target="#demo" data-bs-slide="prev">
<span class="carousel-control-prev-icon"></span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#demo" data-bs-slide="next">
<span class="carousel-control-next-icon"></span>
</button>
</div>
<div class="container-fluid mt-3">
<h3>Safe Cities – Innovation to Build Safe Cities</h3>
<p> Intelligent tra c management and control (ITMC) is an indispens-
able component of urban tra c management which has become one of
the most overwhelming tasks with the rapid growth and development of
urbanization.
</p>
</div>
<div class="container-fluid mt-3">
<h3>Members</h3>
<p>João Manuel R. S. Tavares</p>
<p>José Machado</p>
<p>karri chiranjeevi</p>
</div>
</body>
</html>