-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathviewImage.html
More file actions
41 lines (40 loc) · 1.89 KB
/
Copy pathviewImage.html
File metadata and controls
41 lines (40 loc) · 1.89 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GoMotoFoto: Image Closeup</title>
<link rel="icon" href="images/favicon.ico" type="image/x-icon">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
<style>
img {
width: 100%;
height: auto;
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-lg bg-body-light">
<div class="container-fluid">
<a class="navbar-brand" href="index.html">GoMotoFoto</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#" onclick="history.back()">Back</a>
</li>
</ul>
</div>
</div>
</nav>
<div id="outterBox">
<div id="innerBox">
<img id="image" src="">
</div>
</div>
<script src="js/setImage.js"></script>
</body>
</html>