-
Notifications
You must be signed in to change notification settings - Fork 2
/
Project.html
61 lines (61 loc) · 3.14 KB
/
Project.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Our Services - My Webpage</title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/5.1.3/css/bootstrap.min.css">
</head>
<body>
<header>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container-fluid">
<a class="navbar-brand" href="#">My Webpage</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="About.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#">Our Project</a>
</li>
<li class="nav-item">
<a class="nav-link" href="Blog.html">Blog</a>
</li>
<li class="nav-item">
<a class="nav-link" href="Contact.html">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<main class="container mt-5">
<h1>What we do</h1>
<p>We have taken various steps to solve the problem, starting by identifying the smaller issue first and using the Design Thinking Process to do things step by step.</p>
<div class="row">
<div class="col-md-4">
<h3>Step 1: Identifying the market or area which faces this problem</h3>
<p>Population density refers to the number of people living in a particular area, usually expressed as the number of individuals per square kilometer. High population density areas have a large number of people living in a relatively small space, which can increase the risk of certain hazards. Here are some examples of places with very high population density and their associated hazards:</p>
<li>Urban Slums: Urban slums are characterized by poor living conditions, overcrowding, and inadequate access to basic services. They are at high risk of disasters such as Fire hazards.</li>
<li>Cities: Cities are often the most densely populated areas on earth. Cities have numerous issues such as congested housing, poor cable management and constant construction due to this they also have a higher risk of disasters such as Fire Hazards.</li>
</div>
<div class="col-md-4">
<h3>Step 2: Surveying the population of these areas</h3>
<p>We have talked to a few people who live in these areas and here is what they had to say about Fire Hazards</p>
<li>"insert Responses here"</li>
</div>
<div class="col-md-4">
<h3>Service 3</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse ut metus sit amet mauris lobortis rhoncus. Nullam dignissim, sapien eget iaculis sollicitudin, tellus eros feugiat ipsum, vel consequat sapien turpis at lorem. Vivamus varius, ipsum vel congue vestibulum, neque odio pretium ex, ut tristique lorem urna sed</p>
</div>
</div>
</main>
</body>
</html>