-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.html
49 lines (43 loc) · 1.3 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<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>icmfd</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
<style>
legend{
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
font-size: 35px;
text-align: center;
margin: 30px;
}
.container{
border: 2px;
border-style: double;
}
.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: rgb(160, 158, 158);
color: white;
text-align: center;
}
</style>
</head>
<body>
<legend>IMAGE COPY-MOVE FORGERY DETECTION</legend>
<legend>
ABOUT
</legend>
<div class="container">about</div>
<div class="footer">
<a href="about.html">ABOUT</a>
<a href="purpose.html">PURPOSE</a>
<a href="team.html">TEAM</a>
</div>
</body>
</html>