-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
155 lines (150 loc) · 7.33 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
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
145
146
147
148
149
150
151
152
153
154
155
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Nightless's Portfolio</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<nav>
<a href="#" onclick="showContent('about')">About Me</a>
<a href="#" onclick="showContent('skills')">My Skills</a>
<a href="#" onclick="showContent('contact')">Contact</a>
<a href="#" onclick="showContent('projects')">Projects</a>
<a href="#" onclick="showContent('Links')">Links</a>
</nav>
<main>
<div id="content-container">
<section id="about">
<h1 class="title">Yo I'm Nightless</h1>
<p class="description">
I am a Web developer with a passion for creating amazing sites and backrounds. With a strong background in full-stack web development, I am adept at using various programming languages and frameworks to deliver high-quality products. My expertise includes front-end technologies such as HTML, CSS, and JavaScript, as well as back-end technologies like Node.js and Python. </p>
</section>
<section id="skills">
<h1 class="title">My Skills</h1>
<tr>
<td>HTML</td>
<td>Fluent</td>
</tr>
<tr>
<td>Scss</td>
<td>Fluent</td>
</tr>
<tr>
<td>CSS</td>
<td>Semi-Fluent</td>
</tr>
<tr>
<td>EJS</td>
<td>Still learning</td>
</tr>
<tr>
<td>JavaScript</td>
<td>Semi-Fluent</td>
</tr>
<tr>
<td>React</td>
<td>Still learning</td>
</tr>
<tr>
<td>Python</td>
<td>Fluent</td>
</tr>
<tr>
<td>C++</td>
<td>Still learning</td>
</tr>
</table>
</section>
<section id="contact">
<h1 class="title">Contact Me</h1>
<p class="description">
If you have any questions, please message me.
<p>Discord: xxnightless</p>
<p>Snapchat: xnightsky</p>
<p>Github: xnightless</p>
</section>
<section id="projects">
<div id="project1">
<div class="project-details">
<div class="project-info">
<h2 class="title">
<a href="https://github.com/xnightless/Alpha-Network" target="_blank" class="project-link">
Alpha Network
</a>
</h2>
<p class="description">
Welcome to Alpha Network, offering blazing fast proxies for seamless browsing and gaming experiences. Explore our catalog of games and apps with unmatched speed and reliability.
</p>
</div>
</div>
</div>
<div id="project2">
<div class="project-details">
<div class="project-info">
<h2 class="title">
<a href="https://github.com/xnightless/Flamenetwork/blob/main/README.md" target="_blank" class="project-link">
Flame Network
</a>
</h2>
<p class="description">
Welcome to Flame Network. Explore the Flame Network for high-speed proxies designed for gaming and app usage. Our network offers seamless access to a wide range of content with superior performance.
</p>
</div>
</div>
</div>
<div id="project3">
<div class="project-details">
<div class="project-info">
<h2 class="title">
<a href="https://github.com/xnightless/Shadownetwork" target="_blank" class="project-link">
Shadow
</a>
</h2>
<p class="description">
Welcome to Shadow. Experience the global internet using Shadow, the fastest proxy in the world. The best looking proxy there is with apps and tab cloaking and over 100+ games for students.
</p>
</div>
</div>
</div>
<div id="project4">
<div class="project-details">
<div class="project-info">
<h2 class="title">
<a href="https://github.com/Wyn213/shadower" target="_blank" class="project-link">
InterGalactic
</a>
</h2>
<p class="description">
Welcome to InterGalactic, where we provide the best proxies for students in school, bypassing restrictions at no cost, and free of ads!
</p>
</div>
</div>
</div>
</section>
<section id="links">
<h2>Links</h2>
<!-- Add your links content here -->
</div>
</body>
</html>
</body>
</html>
</section>
</div>
</main>
<footer>© Nightless's Company. All rights reserved.</footer>
<script src="script.js"></script>
<script>
function showContent(sectionId) {
// Hide all sections
document.querySelectorAll('section').forEach(section => {
section.style.display = 'none';
});
// Show the selected section
document.getElementById(sectionId).style.display = 'block';
}
</script>
</body>
</html>