-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (67 loc) · 1.79 KB
/
index.html
File metadata and controls
77 lines (67 loc) · 1.79 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
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
73
74
75
76
77
<!DOCTYPE html>
<html lang="uk">
<head>
<meta charset="UTF-8">
<meta name="google-site-verification" content="PAuJvl9__MVbL3QkZqoMEuQUZwUQ4B4NGpuxSlztNak" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WeekBrowser — вибір мови</title>
<meta name="description" content="WeekBrowser — легкий і відкритий Android-браузер. Оберіть мову сайту.">
<style>
body {
background: #000000;
color: #e0e0e0;
font-family: system-ui, sans-serif;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
text-align: center;
}
h1 {
color: #ffffff;
margin-bottom: 1em;
font-weight: 500;
}
.lang-buttons {
display: flex;
flex-direction: column;
gap: 1em;
}
a {
color: #00d4ff;
text-decoration: none;
font-size: 1.2em;
padding: 0.5em 1.5em;
border: 1px solid #00d4ff;
border-radius: 8px;
transition: all 0.3s;
}
a:hover {
background-color: #00d4ff;
color: #000000;
box-shadow: 0 0 10px #00d4ff;
}
footer {
position: absolute;
bottom: 20px;
font-size: 0.9em;
color: #777;
}
</style>
</head>
<body>
<h1>🌍 WeekBrowser</h1>
<p>Оберіть мову / Choose your language / Выберите язык</p>
<div class="lang-buttons">
<a href="WeekBrowser-uk.html">Українська</a>
<a href="WeekBrowser-en.html">English</a>
<a href="WeekBrowser-ru.html">Русский</a>
</div>
<footer>
<a href="https://github.com/week5thor/WeekBrowser" target="_blank">GitHub</a>
google-site-verification: google2b3e6be6e5ad0f66.html
</footer>
</body>
</html>