-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebcam_viewer.html
More file actions
27 lines (27 loc) · 1 KB
/
webcam_viewer.html
File metadata and controls
27 lines (27 loc) · 1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="refresh" content="30">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>
MRO Webcam Live View
</title>
<style>
body {background-color: #4b2e83; color: #b7a57a;}
h1 {font-family: Arial, Helvetica, sans-serif; font-size: 1.9rem;}
.container {display: flex; flex-wrap: wrap; align-items: center; height: 75vh;}
.center {text-align: center;}
img {max-height: 25vh; border: 2px solid #85754d; margin: 1.5vh;}
</style>
</head>
<body>
<h1 class="center">MRO Webcam Live View</h1>
<div class="container">
<a href="Watertank.jpg"><img alt="Watertank" src="Watertank.jpg"></a>
<a href="Horizon.jpg"><img alt="Horizon" src="Horizon.jpg"></a>
<a href="Gate.jpg"><img alt="Gate" src="Gate.jpg"></a>
<a href="Deck.jpg"><img alt="Deck" src="Deck.jpg"></a>
</div>
</body>
</html>