-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCSprojects.html
More file actions
73 lines (64 loc) · 2.06 KB
/
CSprojects.html
File metadata and controls
73 lines (64 loc) · 2.06 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">
<style>
.centered-content {
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh; /* Adjust this value for desired vertical centering */
}
.project-section {
max-width: 800px;
margin-top: 40px;
padding: 20px;
background-color: white;
border-radius: 5px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.project-title {
font-size: 24px;
margin-bottom: 10px;
text-align: center;
}
.project-image {
max-width: 40%;
height: auto;
border-radius: 5px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
margin-top: 10px;
display: block;
margin: auto;
}
.project-description {
font-size: 18px;
margin-top: 15px;
line-height: 1.5;
text-align: center;
}
</style>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Josh Lamothe's CS Projects</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="navbar">
<ul style="background-color: firebrick;">
<li> <a href="index.html">Home</a> </li>
<li> <a href="CSprojects.html">CS Projects</a> </li>
<li> <a href="MechEprojects.html">Mechanical Engineering Projects</a> </li>
</ul>
</div>
<br> <br> <br> <br>
<h1>Computer Science Projects</h1> <hr>
<div class="Face-detection">
<h2 class="project-title">Face Detection </h2>
<img class="project-image" src="face1.jpeg" alt="Project Image">
<p class="project-description">Using Python we built a program that is able to detect the face of an individual who enters the camera. The program is able to draw a box around anything it determines to be a face, and also determine who's face it is. This program takes advantage of the OpenCV library and displays frontend using flask. </p>
</div>
</body>
</html>