-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (60 loc) · 1.67 KB
/
index.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Homepage</title>
<style>
body {background-color: ghostwhite; }
h1 {color: white;
}
h4 {color: white;}
p {color: navajowhite;
text-align: center;
margin-left: auto;
margin-right: auto%;
}
.button {
border: none;
color: white;
text-align: left;
text-decoration: none;
font-size: 15px;
transition-duration: 0.4s;
cursor: pointer;
}
.img1 {
width: 20%;
align:left;
}
.b1 {
background-color: white;
color: darkolivegreen;
border: 2px solid #4da6ff;
height: 50px;
width: 140px;
}
</style>
</head>
<body >
<span>
<img src="res/docker.png" width="40" height="30" alt="Photo">
</span>
<h1 align="center" style="color:darkolivegreen;">Welcome $HOME</h1>
<p >
<button class="button b1" onClick="window.open('http://mac-mini.local:8581/')"><img class="img1" src="res/homebridge.png"> Homebridge </button>
</p>
<p >
<button class="button b1" onClick="window.open('http://mac-mini.local:8080/')"><img class="img1" src="res/jenkins.png"> Jenkiks </button>
</p>
<p >
<button class="button b1" onClick="window.open('http://mac-mini.local:8112')"><img class="img1" src="res/deluge.png"> Deluge </button>
</p>
<p >
<button class="button b1" onClick="window.open('http://mac-mini.local:9000/')"><img class="img1" src="res/mqtt.jpg"> Mqtt-Server </button>
</p>
<span></span>
<h4 align="center" style="color:darkolivegreen;">Copyright @nikoskon 2022-2023</h4>
</body>
</html>