Skip to content

Commit bb43428

Browse files
committed
fix: Video htmls sites
1 parent 0d69066 commit bb43428

File tree

4 files changed

+540
-0
lines changed

4 files changed

+540
-0
lines changed

videos/video-1.html

Lines changed: 136 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,136 @@
1+
<!doctype html>
2+
<html lang="en-us">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<base href="../" target="_blank" />
6+
7+
<!-- Favion -->
8+
<link
9+
rel="apple-touch-icon"
10+
sizes="57x57"
11+
href="favicons/apple-touch-icon-57x57.png"
12+
/>
13+
<link
14+
rel="apple-touch-icon"
15+
sizes="60x60"
16+
href="favicons/apple-touch-icon-60x60.png"
17+
/>
18+
<link
19+
rel="apple-touch-icon"
20+
sizes="72x72"
21+
href="favicons/apple-touch-icon-72x72.png"
22+
/>
23+
<link
24+
rel="apple-touch-icon"
25+
sizes="76x76"
26+
href="favicons/apple-touch-icon-76x76.png"
27+
/>
28+
<link
29+
rel="apple-touch-icon"
30+
sizes="114x114"
31+
href="favicons/apple-touch-icon-114x114.png"
32+
/>
33+
<link
34+
rel="apple-touch-icon"
35+
sizes="120x120"
36+
href="favicons/apple-touch-icon-120x120.png"
37+
/>
38+
<link
39+
rel="apple-touch-icon"
40+
sizes="144x144"
41+
href="favicons/apple-touch-icon-144x144.png"
42+
/>
43+
<link
44+
rel="apple-touch-icon"
45+
sizes="152x152"
46+
href="favicons/apple-touch-icon-152x152.png"
47+
/>
48+
<link
49+
rel="apple-touch-icon"
50+
sizes="180x180"
51+
href="favicons/apple-touch-icon-180x180.png"
52+
/>
53+
<link
54+
rel="icon"
55+
type="image/png"
56+
href="favicons/favicon-32x32.png"
57+
sizes="32x32"
58+
/>
59+
<link
60+
rel="icon"
61+
type="image/png"
62+
href="favicons/android-chrome-192x192.png"
63+
sizes="192x192"
64+
/>
65+
<link
66+
rel="icon"
67+
type="image/png"
68+
href="favicons/favicon-96x96.png"
69+
sizes="96x96"
70+
/>
71+
<link
72+
rel="icon"
73+
type="image/png"
74+
href="favicons/favicon-16x16.png"
75+
sizes="16x16"
76+
/>
77+
<link rel="manifest" href="favicons/manifest.json" />
78+
<link
79+
rel="mask-icon"
80+
href="favicons/safari-pinned-tab.svg"
81+
color="#5bbad5"
82+
/>
83+
<link rel="shortcut icon" href="favicons/favicon.ico" />
84+
<meta name="msapplication-TileColor" content="#da532c" />
85+
<meta
86+
name="msapplication-TileImage"
87+
content="favicons/mstile-144x144.png"
88+
/>
89+
<meta name="msapplication-config" content="favicons/browserconfig.xml" />
90+
<meta name="theme-color" content="#ffffff" />
91+
92+
<title>GRSFramework by gabyx</title>
93+
<meta name="viewport" content="width=device-width, initial-scale=1" />
94+
95+
<link
96+
rel="stylesheet"
97+
type="text/css"
98+
href="stylesheets/normalize.css"
99+
media="screen"
100+
/>
101+
<link
102+
href="https://fonts.googleapis.com/css?family=Open+Sans:400,700"
103+
rel="stylesheet"
104+
type="text/css"
105+
/>
106+
<link
107+
rel="stylesheet"
108+
type="text/css"
109+
href="stylesheets/stylesheet.css"
110+
media="screen"
111+
/>
112+
<link
113+
rel="stylesheet"
114+
type="text/css"
115+
href="stylesheets/github-light.css"
116+
media="screen"
117+
/>
118+
<style>
119+
video {
120+
display: block;
121+
position: relative;
122+
min-width: 300px;
123+
max-width: 100%;
124+
padding: 10px;
125+
left: 50%;
126+
transform: translateX(-50%);
127+
}
128+
</style>
129+
</head>
130+
<body>
131+
<video controls>
132+
<source src="videos/Avalanche-P-9Tracking.mp4" type="video/mp4" />
133+
Your browser does not support the video tag.
134+
</video>
135+
</body>
136+
</html>

videos/video-2.html

Lines changed: 132 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,132 @@
1+
<!doctype html>
2+
<html lang="en-us">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<base href="../" target="_blank" />
6+
7+
<!-- Favion -->
8+
<link
9+
rel="apple-touch-icon"
10+
sizes="57x57"
11+
href="favicons/apple-touch-icon-57x57.png"
12+
/>
13+
<link
14+
rel="apple-touch-icon"
15+
sizes="60x60"
16+
href="favicons/apple-touch-icon-60x60.png"
17+
/>
18+
<link
19+
rel="apple-touch-icon"
20+
sizes="72x72"
21+
href="favicons/apple-touch-icon-72x72.png"
22+
/>
23+
<link
24+
rel="apple-touch-icon"
25+
sizes="76x76"
26+
href="favicons/apple-touch-icon-76x76.png"
27+
/>
28+
<link
29+
rel="apple-touch-icon"
30+
sizes="114x114"
31+
href="favicons/apple-touch-icon-114x114.png"
32+
/>
33+
<link
34+
rel="apple-touch-icon"
35+
sizes="120x120"
36+
href="favicons/apple-touch-icon-120x120.png"
37+
/>
38+
<link
39+
rel="apple-touch-icon"
40+
sizes="144x144"
41+
href="favicons/apple-touch-icon-144x144.png"
42+
/>
43+
<link
44+
rel="apple-touch-icon"
45+
sizes="152x152"
46+
href="favicons/apple-touch-icon-152x152.png"
47+
/>
48+
<link
49+
rel="apple-touch-icon"
50+
sizes="180x180"
51+
href="favicons/apple-touch-icon-180x180.png"
52+
/>
53+
<link
54+
rel="icon"
55+
type="image/png"
56+
href="favicons/favicon-32x32.png"
57+
sizes="32x32"
58+
/>
59+
<link
60+
rel="icon"
61+
type="image/png"
62+
href="favicons/android-chrome-192x192.png"
63+
sizes="192x192"
64+
/>
65+
<link
66+
rel="icon"
67+
type="image/png"
68+
href="favicons/favicon-96x96.png"
69+
sizes="96x96"
70+
/>
71+
<link
72+
rel="icon"
73+
type="image/png"
74+
href="favicons/favicon-16x16.png"
75+
sizes="16x16"
76+
/>
77+
<link rel="manifest" href="favicons/manifest.json" />
78+
<link
79+
rel="mask-icon"
80+
href="favicons/safari-pinned-tab.svg"
81+
color="#5bbad5"
82+
/>
83+
<link rel="shortcut icon" href="favicons/favicon.ico" />
84+
<meta name="msapplication-TileColor" content="#da532c" />
85+
<meta
86+
name="msapplication-TileImage"
87+
content="favicons/mstile-144x144.png"
88+
/>
89+
<meta name="msapplication-config" content="favicons/browserconfig.xml" />
90+
<meta name="theme-color" content="#ffffff" />
91+
92+
<title>GRSFramework by gabyx</title>
93+
<meta name="viewport" content="width=device-width, initial-scale=1" />
94+
95+
<link
96+
rel="stylesheet"
97+
type="text/css"
98+
href="stylesheets/normalize.css"
99+
media="screen"
100+
/>
101+
<link
102+
href="https://fonts.googleapis.com/css?family=Open+Sans:400,700"
103+
rel="stylesheet"
104+
type="text/css"
105+
/>
106+
<link
107+
rel="stylesheet"
108+
type="text/css"
109+
href="stylesheets/stylesheet.css"
110+
media="screen"
111+
/>
112+
<link
113+
rel="stylesheet"
114+
type="text/css"
115+
href="stylesheets/github-light.css"
116+
media="screen"
117+
/>
118+
<style>
119+
video {
120+
position: relative;
121+
left: 50%;
122+
transform: translateX(-50%);
123+
}
124+
</style>
125+
</head>
126+
<body>
127+
<video controls>
128+
<source src="videos/Avalanche-P-9StaticFarProcs.mp4" type="video/mp4" />
129+
Your browser does not support the video tag.
130+
</video>
131+
</body>
132+
</html>

0 commit comments

Comments
 (0)