Skip to content

Commit 5b71466

Browse files
Add files via upload
1 parent 83235bb commit 5b71466

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

index.html

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<!DOCTYPE html>
2+
<html lang="ru">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Скачать приложение</title>
7+
<style>
8+
body {
9+
font-family: Arial, sans-serif;
10+
text-align: center;
11+
margin-top: 50px;
12+
}
13+
.button {
14+
display: inline-block;
15+
padding: 10px 20px;
16+
font-size: 18px;
17+
color: #fff;
18+
background-color: #007BFF;
19+
text-decoration: none;
20+
border-radius: 5px;
21+
transition: background-color 0.3s;
22+
}
23+
.button:hover {
24+
background-color: #0056b3;
25+
}
26+
</style>
27+
</head>
28+
<body>
29+
<h1>Скачать приложение</h1>
30+
<p>Нажмите на кнопку ниже, чтобы скачать приложение:</p>
31+
<a class="button" href="itms-services://?action=download-manifest&url=https://80c1-45-156-114-191.ngrok-free.app/dev.plist">
32+
Скачать
33+
</a>
34+
</body>
35+
</html>

0 commit comments

Comments
 (0)