-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHome.html
28 lines (28 loc) · 878 Bytes
/
Home.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
<html>
<head>
<style>
.button {
font-size: 22px;
border: 1px solid #000;
background-color: #03DEC9;
color: #FFF;
cursor: pointer;
}
h1.title {
font-size: 33px;
}
</style>
<script>
function redirectTo(url) {
window.location = url;
}
</script>
</head>
<body>
<img style="height: 1em" />
<center><h1 class="title">Video Recoder</h1></center>
<p style="font-size: 18px">A software can help you to convert the video file's format.</p>
<img style="height: 11em" />
<center><img style="width: 0.7em" /><button class="button" onclick='redirectTo("https://media.githubusercontent.com/media/Ff-c109/VideoRecoder/main/launcher.zip")' target="_blank">Download</button><img style="width: 0.7em" /></center>
</body>
</html>