-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtutorials.html
More file actions
144 lines (133 loc) · 6.19 KB
/
tutorials.html
File metadata and controls
144 lines (133 loc) · 6.19 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
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<!-- Import -->
<link rel="stylesheet2" type="text/css" href="css/custom.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" href="css/animate.css">
<script src="https://kit.fontawesome.com/d02c8a8a14.js" crossorigin="anonymous"></script>
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700" rel="stylesheet">
<meta property="og:title" content="Neonite" />
<meta property="og:type" content="website" />
<meta property="og:url" content="index.html" />
<meta property="og:image" content="https://preview.daneric.dev/neonite/images/LogoTransparent.png" />
<meta property="og:description" content="Neonite Private Server" />
<meta name="theme-color" content="#a74fff">
<link rel="shortcut icon" href="images/Neonite2.png"/>
<meta charset="utf-8">
<title>Home - Neonite</title>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-2911701426423067"
crossorigin="anonymous"></script>
</head>
<body onload="typeWriter()">
<div class="container">
<nav class="navbar">
<ul class="navbar-module links">
<img class="neonite-logo" src="images/LogoTransparent.png"></img>
<a href="./" class="link boldfont">Home</a>
<a href="./tutorials.html" class="active link boldfont">Tutorials</a>
</ul>
<ul class="navbar-module navbar-socials">
<li><a href="https://discord.gg/4R4v3yuraz" class="navbar-item"><i class="fab fa-discord"></i></a></li>
</ul>
</nav>
<div class="tommy">
<main>
<div class="intro">
<h1 class="intro-header"><img class="neonite-header" src="images/neonite.png"/></h1>
<h2>
<a class="intro-description">Tutorials
</a>
</h2>
</div>
</div>
</br>
<div class="text-center">
<div class="row mt--7">
<div class="col-lg-12">
<div class="about-me">
<div class="about-me tutorial-thumb-left wow">
<img class="right-picture wow" style="border-radius: 10px;" width="500" src="https://i.ytimg.com/vi/TnoiDk1EsFk/maxresdefault.jpg" alt="Daneric">
</div>
<div style="" class="col-6">
<h3 class="center-text tommy" style="text-align: center !important; font-weight: 300 !important;"><a class="cuba" style="color: #a74fff !important;" href="https://www.youtube.com/watch?v=TnoiDk1EsFk">How to use Neonite++</a><br><br>HOW TO USE NEONITE++ | FORTNITE IN-GAME PRIVATE SERVER<br><br><br><br><br><br></h3>
</div>
</div>
<div class="about-me">
<div style="" class="col-6">
<h3 class="center-text tommy" style="text-align: center !important; font-weight: 300 !important;"><a class="cuba" style="color: #a74fff !important;" href="https://www.youtube.com/watch?v=Y36dv9TcERQ">Travis Scott Event</a><br><br>How to watch TRAVIS SCOTT EVENT as THANOS IN NEONITE++<br><br><br><br><br><br></h3>
</div>
<div class="about-me tutorial-thumb wow">
<img class="right-picture wow" style="border-radius: 10px;" width="500" src="https://i.ytimg.com/vi/Y36dv9TcERQ/maxresdefault.jpg" alt="Daneric">
</div>
</div>
<div class="about-me">
<div class="about-me tutorial-thumb-left wow">
<img class="right-picture wow" style="border-radius: 10px;" width="500" src="https://i.ytimg.com/vi/k_QgAPFnDbs/maxresdefault.jpg" alt="Daneric">
</div>
<div style="" class="col-6">
<h3 class="center-text tommy" style="text-align: center !important; font-weight: 300 !important;"><a class="cuba" style="color: #a74fff !important;" href="https://www.youtube.com/watch?v=k_QgAPFnDbs">How to play as Thanos</a><br><br>How to PLAY AS THANOS using NEONITE++! (unreleased modes, unreleased weapons)<br><br><br><br><br><br></h3>
</div>
</div>
</div>
</div>
</div>
</br>
</br>
<div class="container second-main">
<main>
<h1copy class="copyright-text cuba">Copyright © Neonite 2021 | Website made with ❤️ by <a class="credits">Daneric</a></h1copy>
</main>
</div>
</body>
<script>
var TxtType = function(el, toRotate, period) {
this.toRotate = toRotate;
this.el = el;
this.loopNum = 0;
this.period = parseInt(period, 10) || 2000;
this.txt = '';
this.tick();
this.isDeleting = false;
};
TxtType.prototype.tick = function() {
var i = this.loopNum % this.toRotate.length;
var fullTxt = this.toRotate[i];
if (this.isDeleting) {
this.txt = fullTxt.substring(0, this.txt.length - 1);
} else {
this.txt = fullTxt.substring(0, this.txt.length + 1);
}
this.el.innerHTML = '<span class="wrap">'+this.txt+'</span>';
var that = this;
var delta = 200 - Math.random() * 100;
if (this.isDeleting) { delta /= 2; }
if (!this.isDeleting && this.txt === fullTxt) {
delta = this.period;
this.isDeleting = true;
} else if (this.isDeleting && this.txt === '') {
this.isDeleting = false;
this.loopNum++;
delta = 500;
}
setTimeout(function() {
that.tick();
}, delta);
};
window.onload = function() {
var elements = document.getElementsByClassName('typewrite');
for (var i=0; i<elements.length; i++) {
var toRotate = elements[i].getAttribute('data-type');
var period = elements[i].getAttribute('data-period');
if (toRotate) {
new TxtType(elements[i], JSON.parse(toRotate), period);
}
}
// INJECT CSS
var css = document.createElement("style");
css.type = "text/css";
css.innerHTML = ".typewrite > .wrap { border-right: 0.08em solid #fff}";
document.body.appendChild(css);
};
</script>
</html>