-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
104 lines (97 loc) · 3.48 KB
/
index.html
File metadata and controls
104 lines (97 loc) · 3.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PyroGuard Fire Detection System - Project Proposal</title>
<style>
.pdf-button {
display: inline-block;
padding: 10px 15px;
margin: 5px;
background-color: #ff5733;
color: white;
text-decoration: none;
border-radius: 5px;
font-size: 14px;
transition: background-color 0.3s, color 0.3s;
}
.pdf-button:hover {
background-color: #e04f2f;
color: #ffffff;
}
body {
font-family: 'Roboto Condensed', sans-serif;
background-color: #1a1a1a;
color: #ffffff;
margin: 0;
padding: 20px;
}
h1, h2 {
color: #ff5733;
}
ul {
list-style: none;
}
li {
margin-bottom: 10px;
}
p {
font-size: 16px;
text-align: left;
margin: 0;
}
/* Add padding to the last paragraph */
p:last-child {
padding: 10px;
}
.pdf-link {
display: block;
margin-top: 10px;
}
</style>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto+Condensed">
</head>
<body>
<h1>PyroGuard Fire Detection System - Project Proposal</h1>
<h2>Project Information</h2>
<ul>
<li><strong>Name of the Project:</strong> PyroGuard Fire Detection System</li>
</ul>
<h2>Team Members</h2>
<ul>
<li><strong>Name:</strong> Ecem Sila Gök</li>
<li><strong>ID:</strong> 1118505616</li>
<li><strong>Name:</strong> Ece Selin Adigüzel</li>
<li><strong>ID:</strong> 1988345282</li>
<li><strong>Name:</strong> Zeynep Beyza Uçar</li>
<li><strong>ID:</strong> 1004263330</li>
<li><strong>Name:</strong> Doruk Aydogan</li>
<li><strong>ID:</strong> 1354737307</li>
</ul>
<h2>Supervisor and Jury Members</h2>
<ul>
<li><strong>Supervisor:</strong> Yücel Cimtay</li>
<li><strong>Jury Member 1:</strong> Gökçe Nur Yilmaz</li>
<li><strong>Jury Member 2:</strong> Venera Adanova</li>
</ul>
<h2>Project Description</h2>
<p>
This project will focus on creating an end-to-end system that will detect the presence of fire from camera footage <br><br>
in a timely and accurate manner, aiming to stop the fire before it has a chance to cause real damage.<br><br>
Once the fire is identified, the system will then find the approximate placement of it. An alarm system will be activated <br><br>
and the system will locate where the nearest fire extinguisher from pre-determined fire extinguisher stations and show its location.
</p>
<h2>Project Documents</h2>
<ul class="pdf-list">
<li><a href="PyroGuard3.pdf" target="_blank" class="pdf-button">PyroGuard Project Proposal Report</a></li>
<li><a href="PyroGuard1.pdf" target="_blank" class="pdf-button">PyroGuard Project Specifications Report</a></li>
<li><a href="PyroGuard2.pdf" target="_blank" class="pdf-button">PyroGuard Project Analysis Report</a></li>
<li><a href="PyroGuard4.pdf" target="_blank" class="pdf-button">PyroGuard High Level Design Report</a></li>
</ul>
<h2>BackLog</h2>
<div style="text-align: center;">
<img src="backlog.jpg" alt="Backlog" style="margin-bottom: 20px;">
</div>
</body>
</html>