-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
106 lines (74 loc) · 3.32 KB
/
index.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
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Charset -->
<meta charset="utf-8">
<!-- Style Sheets -->
<!-- Scripts -->
<!-- Viewport -->
<meta name="viewport" content="width=device-width">
<!-- Title -->
<title>One sensor line follower robot</title>
<!-- Description -->
<meta name="description"
content="Website about one sensor line follower robot, that can also avoid objects and have automatic calibration.">
<!-- Icon -->
<link rel="icon" type="image/png" sizes="32x32" href="icon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="icon/favicon-16x16.png">
<!-- Shortcut icon -->
<link rel="shortcut icon" href="icon/favicon.ico">
<!-- Safari pinned image (svg) -->
<link rel="mask-icon" href="icon/safari-pinned-tab.svg" color="#282c34">
<!-- Apple touch icon -->
<link rel="apple-touch-icon" sizes="180x180" href="icon/apple-touch-icon.png">
<!-- Android Chrome icons -->
<link rel="manifest" href="icon/site.webmanifest">
<!-- Microsoft icons -->
<meta name="msapplication-config" content="../icon/browserconfig.xml">
<!-- Theme color -->
<meta name="theme-color" content="#282c34">
<meta name="msapplication-TileColor" content="#282c34">
<meta name="msapplication-navbutton-color" content="#282c34">
<meta name="apple-mobile-web-app-status-bar-style" content="#282c34">
<!-- ===================== -->
<!-- ===== OpenGraph ===== -->
<!-- ===================== -->
<!-- (Open)Search on site -->
<!-- <link rel="search" type="application/opensearchdescription+xml" href="/opensearch.xml" title="One sensor line follower robot"> -->
<!-- Url -->
<meta property="og:url" content="https://oslfrobot.github.io">
<!-- Title -->
<meta property="og:title" content="One sensor line follower robot">
<!-- Description -->
<meta property="og:description"
content="Website about one sensor line follower robot, that can also avoid objects and have automatic calibration.">
<!-- Icon -->
<meta property="og:image" content="https://oslfrobot.github.io/icon/icon-1200x630.png">
<meta property="og:image:type" content="image/png">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta property="og:type" content="page">
<meta property="og:locale" content="en_GB">
<meta property="og:locale:alternate" content="sk_SK">
<!-- ===================== -->
<!-- ====== Twitter ====== -->
<!-- ===================== -->
<!-- Twitter page (https://twitter.com/*) -->
<!-- <meta property="twitter:site" content="*"> -->
<!-- Twitter page of creator (https://twitter.com/*) -->
<!-- <meta property="twitter:creator" content="*"> -->
<!-- Twitter type of showed banner -->
<meta property="twitter:card" content="summary_large_image">
<!-- Title -->
<meta property="twitter:title" content="One sensor line follower robot">
<!-- Description -->
<meta property="twitter:description"
content="Website about one sensor line follower robot, that can also avoid objects and have automatic calibration.">
<!-- Icon -->
<meta property="twitter:image:src" content="https://oslfrobot.github.io/icon/icon-1200x630.png">
<meta property="twitter:image:width" content="1200">
<meta property="twitter:image:height" content="630">
<!-- Default redirect to english version -->
<meta http-equiv="refresh" content="0; url=en/home.html">
</head>
</html>