-
Notifications
You must be signed in to change notification settings - Fork 0
/
output.html
47 lines (42 loc) · 1.04 KB
/
output.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
<!DOCTYPE html>
<html>
<head>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
</head>
<style>
.center {
display: flex;
justify-content: center;
align-items: center;
height: 200px;
border: 3px solid green;
}
.titlecenter {
display: flex;
justify-content: center;
align-items: center;
height: 200px;
}
#yourContainer img {
max-width: 100%;
max-height: 100%;
}
</style>
<body>
<!-- As a heading -->
<nav class="navbar navbar-light bg-light">
<div class="container-fluid">
<div class="titlecenter">
<div><h1>Computational Photography<br> (Input vs Output Image)</h1></div>
</div>
</div>
</nav>
<div id="yourContainer">
<img src="_before_after.png" alt="">
</div>
</body>