-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.html
76 lines (72 loc) · 3.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>three.js</title>
<style>
body {
overflow: hidden;
margin: 0px;
}
</style>
<title>Solar System : Explore the 3D Solar System</title>
<meta name="author" content="ankitjha2603" />
<meta name="robots" content="index, follow" />
<meta
name="description"
content="The Solar System 3D Visualization project is an interactive web-based application that allows users to explore the Solar System in a three-dimensional environment. The project is developed using the Three.js library, which provides powerful tools for creating 3D content on the web. Users can witness the rotation of planets around the Sun and their self-rotation, as well as enjoy the beauty of space in this immersive experience."
/>
<meta
name="keywords"
content="three.js, solar system, 3D, space, planets, astronomy, stars, sun, mercury, venus, earth, mars, jupiter, saturn, uranus, neptune, pluto"
/>
<meta
property="og:title"
content="Solar System : Explore the 3D Solar System"
/>
<meta
property="og:description"
content="The Solar System 3D Visualization project is an interactive web-based application that allows users to explore the Solar System in a three-dimensional environment. The project is developed using the Three.js library, which provides powerful tools for creating 3D content on the web. Users can witness the rotation of planets around the Sun and their self-rotation, as well as enjoy the beauty of space in this immersive experience."
/>
<meta
property="og:url"
content="https://ankitjha2603.github.io/solar-system3D/"
/>
<meta property="og:type" content="website" />
<!-------------------------->
<!-- Sitemap -->
<link
rel="sitemap"
type="application/xml"
title="Sitemap"
href="https://ankitjha2603.github.io/sitemap.xml"
/>
<!-------------------------->
<!----------------------------------------------------------------------------->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-4J64SC1QY7"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-4J64SC1QY7");
</script>
<!--Google verification--->
<meta
name="google-site-verification"
content="5QsjbXuM1buDwEtnxWDKN9dE1qgf_dgz646EdwUxSWg"
/>
<!----------------------------------------------------------------------------->
<link rel="icon" type="image/png" href="./image/solar-system.png" />
<script type="text/javascript" src="./min.js/dat.gui.min.js"></script>
</head>
<body>
<script src="./js/solarSystem.js" type="module"></script>
</body>
</html>