-
Notifications
You must be signed in to change notification settings - Fork 915
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (36 loc) · 1.06 KB
/
index.html
File metadata and controls
36 lines (36 loc) · 1.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta name="theme-color" content="#000000" />
<link
href="https://cdn.rawgit.com/michalsnik/aos/2.1.1/dist/aos.css"
rel="stylesheet"
/>
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
<link rel="shortcut icon" href="%PUBLIC_URL%/earth.ico" />
<link
href="https://fonts.googleapis.com/css?family=Noto+Sans&display=swap"
rel="stylesheet"
/>
<title>Travel Guide | By Zero To Mastery Students</title>
<meta
name="description"
content="A zero to mastery open source project lead by Andrei Neagoie and build by students."
/>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script src="https://cdn.rawgit.com/michalsnik/aos/2.1.1/dist/aos.js"></script>
<script>
AOS.init({
duration: 1200,
});
</script>
</body>
</html>