-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathabout.html
More file actions
56 lines (54 loc) · 2.27 KB
/
about.html
File metadata and controls
56 lines (54 loc) · 2.27 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
<!DOCTYPE html>
<html lang="ua">
<head>
<link rel="manifest" href="manifest.json">
<title>Быстрый - по быстрому!</title>
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="application-name" content="Fastfen shop">
<meta name="apple-mobile-web-app-title" content="Fastfen shop">
<meta name="theme-color" content="#FF9800">
<meta name="msapplication-navbutton-color" content="#FF9800">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="msapplication-starturl" content="/index.html">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, shrink-to-fit=no">
<link rel="icon" sizes="128x128" href="/images/touch/icon-128x128.png">
<link rel="apple-touch-icon" sizes="128x128" href="/images/touch/icon-128x128.png">
<link rel="icon" sizes="192x192" href="icon-192x192.png">
<link rel="apple-touch-icon" sizes="192x192" href="/images/touch/icon-192x192.png">
<link rel="icon" sizes="256x256" href="/images/touch/icon-256x256.png">
<link rel="apple-touch-icon" sizes="256x256" href="/images/touch/icon-256x256.png">
<link rel="icon" sizes="384x384" href="/images/touch/icon-384x384.png">
<link rel="apple-touch-icon" sizes="384x384" href="/images/touch/icon-384x384.png">
<link rel="icon" sizes="512x512" href="/images/touch/icon-512x512.png">
<link rel="apple-touch-icon" sizes="512x512" href="/images/touch/icon-512x512.png">
<meta charset="utf-8">
<title>Fastfen shop</title>
<link rel="stylesheet" href="styles/main.css" />
</head>
<body>
<header>
<img src="images/title.svg" alt="Быстрый - по быстрому">
</header>
<main>
<section class="card">
<video id="demoVideo" autoplay="autoplay" controls >
<source src="./videos/demo.mp4" type="video/mp4" />
<source src="./videos/demo.ogg" type="video/ogg" />
</video>
</section>
</main>
<footer>
<ul class="flex-list">
<li><a href="index.html"><img src="images/shop.svg" alt="Магазин"></a></li>
</ul>
</footer>
<script src="js/main.js"></script>
<script>
const demoVideo = document.getElementById('demoVideo');
demoVideo.addEventListener('onended', function() {
alert('Video ended');
});
</script>
</body>
</html>