school44s commited on
Commit
cce161b
·
verified ·
1 Parent(s): 0fabf08

Upload 2 files

Browse files
Files changed (2) hide show
  1. VnexpressX/vnexpressX.html +142 -0
  2. b7/b7.html +296 -0
VnexpressX/vnexpressX.html ADDED
@@ -0,0 +1,142 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>vnexpressX - News</title>
7
+ <style>
8
+ body {
9
+ font-family: Arial, sans-serif;
10
+ margin: 0;
11
+ padding: 0;
12
+ background-color: #f4f4f4;
13
+ }
14
+ header {
15
+ background-color: #333;
16
+ color: #fff;
17
+ padding: 10px 20px;
18
+ display: flex;
19
+ justify-content: space-between;
20
+ align-items: center;
21
+ }
22
+ header h1 {
23
+ margin: 0;
24
+ }
25
+ header nav ul {
26
+ list-style: none;
27
+ padding: 0;
28
+ margin: 0;
29
+ display: flex;
30
+ }
31
+ header nav ul li {
32
+ margin: 0 10px;
33
+ }
34
+ header nav ul li a {
35
+ color: #fff;
36
+ text-decoration: none;
37
+ }
38
+ main {
39
+ padding: 20px;
40
+ }
41
+ .article {
42
+ background: #fff;
43
+ margin: 20px 0;
44
+ padding: 15px;
45
+ border-radius: 5px;
46
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
47
+ display: flex;
48
+ }
49
+ .article-image {
50
+ width: 150px;
51
+ height: 150px;
52
+ border-radius: 5px;
53
+ margin-right: 15px;
54
+ object-fit: cover;
55
+ }
56
+ .article-content {
57
+ flex: 1;
58
+ }
59
+ .article-title {
60
+ margin: 0;
61
+ font-size: 1.5em;
62
+ }
63
+ .article-title a {
64
+ text-decoration: none;
65
+ color: #333;
66
+ }
67
+ .article-title a:hover {
68
+ color: #007BFF;
69
+ }
70
+ .article-description {
71
+ color: #666;
72
+ }
73
+ footer {
74
+ text-align: center;
75
+ padding: 10px 0;
76
+ background: #333;
77
+ color: #fff;
78
+ }
79
+ </style>
80
+ </head>
81
+ <body>
82
+ <header>
83
+ <h1>vnexpressX</h1>
84
+ <nav>
85
+ <ul>
86
+ <li><a href="#">Home</a></li>
87
+ <li><a href="#">Technology</a></li>
88
+ <li><a href="#">Health</a></li>
89
+ <li><a href="#">Contact</a></li>
90
+ </ul>
91
+ </nav>
92
+ </header>
93
+ <main>
94
+ <section id="news-container"></section>
95
+ </main>
96
+ <footer>
97
+ <p>&copy; 2025 vnexpressX. All rights reserved.</p>
98
+ </footer>
99
+ <script>
100
+ const articles = [
101
+ {
102
+ title: "Breaking News: Major Event Happens",
103
+ description: "Lorem ipsum dolor sit amet, consectetur adipiscing elit.",
104
+ url: "#",
105
+ image: "https://via.placeholder.com/150",
106
+ },
107
+ {
108
+ title: "Tech Trends: New Innovations in 2025",
109
+ description: "Curabitur vel erat in ligula bibendum sollicitudin.",
110
+ url: "#",
111
+ image: "https://via.placeholder.com/150",
112
+ },
113
+ {
114
+ title: "Health Tips: Staying Fit During Winter",
115
+ description: "Pellentesque habitant morbi tristique senectus et netus.",
116
+ url: "#",
117
+ image: "https://via.placeholder.com/150",
118
+ },
119
+ ];
120
+
121
+ function renderArticles() {
122
+ const newsContainer = document.getElementById("news-container");
123
+ articles.forEach((article) => {
124
+ const articleElement = document.createElement("div");
125
+ articleElement.className = "article";
126
+ articleElement.innerHTML = `
127
+ <img src="${article.image}" alt="${article.title}" class="article-image" />
128
+ <div class="article-content">
129
+ <h2 class="article-title"><a href="${article.url}">${article.title}</a></h2>
130
+ <p class="article-description">${article.description}</p>
131
+ </div>
132
+ `;
133
+ newsContainer.appendChild(articleElement);
134
+ });
135
+ }
136
+
137
+ document.addEventListener("DOMContentLoaded", () => {
138
+ renderArticles();
139
+ });
140
+ </script>
141
+ </body>
142
+ </html>
b7/b7.html ADDED
@@ -0,0 +1,296 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Document</title>
7
+ <link rel="stylesheet" href="main.css">
8
+ </head>
9
+ <body>
10
+ <style>
11
+ body{
12
+ margin: 0;
13
+ font-family: Arial, Helvetica, sans-serif;
14
+ background-color: black;
15
+ color: white;
16
+ }
17
+ .navbar{
18
+ display: flex;
19
+ justify-content: center;
20
+ background-color: #1d1a1a;
21
+ position: sticky;
22
+ top: 0;
23
+ z-index: 1000;
24
+ }
25
+ .navbar a{
26
+ color: white;
27
+ text-decoration: none;
28
+ margin: 0 15px;
29
+ font-size: 18px;
30
+ padding: 8px 12px;
31
+ border-radius: 4px;
32
+ transition: all 0.3s ease;
33
+ }
34
+ .navbar a:hover{
35
+ background-color: #464444;
36
+ }
37
+ .navbar a.active{
38
+ color: #f7ca3e;
39
+ font-weight: bold;
40
+ }
41
+ #item_container_narration-ablink{
42
+ background-color: #0a0a0a;
43
+ margin: 3%;
44
+ }
45
+ #item_container_narration-explink{
46
+ background-color: #0a0a0a;
47
+ margin: 3%;}
48
+ #item_container_narration-portlink{
49
+ background-color: #0a0a0a;
50
+ margin: 3%;}
51
+ #item_container_narration-bllink{
52
+ background-color: #0a0a0a;
53
+ margin: 3%;}
54
+ #item_container_narration-contlink{
55
+ background-color: #0a0a0a;
56
+ margin: 3%;}
57
+ .border {
58
+ border-image: linear-gradient(to right, #3acfd5 0%, #3a4ed5 100%) 1;
59
+ border-width: 4px;
60
+ border-style: solid;
61
+ padding: 5px;
62
+ margin: 10%;
63
+ margin-top: 0;
64
+ }
65
+ .item{
66
+ background-color: #0c0c0c;
67
+ border-image: linear-gradient(to right, #cabf23 0%, #b78be9 100%) 1;
68
+ border-width: 4px;
69
+ border-style: solid;
70
+ padding: 5px;
71
+ }
72
+ </style>
73
+ <div class="navbar">
74
+ <a id="item_container_narration-ablink" href="#About">About</a>
75
+ <a id="item_container_narration-explink" href="#Experience">Experience</a>
76
+ <a id="item_container_narration-portlink" href="#Portfolio">Portfolio</a>
77
+ <a id="item_container_narration-bllink" href="#Blog">Blog</a>
78
+ <a id="item_container_narration-contlink" href="#Contact">Contact</a>
79
+ </div>
80
+ <div id="About" class="border">
81
+ <h1>About Me</h1>
82
+ <p>
83
+ Hi, I'm Alex—a passionate programmer and cybersecurity enthusiast. I specialize in building innovative solutions, solving complex problems, and protecting systems from potential threats. With years of experience in coding and security analysis, I've developed a deep understanding of how technology shapes our world.
84
+ </p>
85
+ <p>
86
+ I'm skilled in Python, C++, and AI development, focusing on creating smarter and safer systems. To me, every line of code is more than just instructions—it's a tool to drive progress and an art form to shape the future.
87
+ </p>
88
+ <p>
89
+ I believe technology holds the power to transform lives, and I'm committed to using my skills to make a meaningful impact. Let's connect and explore new ideas together! 😊
90
+ </p>
91
+ <h1>What I'm Doing</h1>
92
+ <div class="item">
93
+ <h2>Web design</h2>
94
+ <p>
95
+ I'm currently working on a web design project that involves creating a responsive and user-friendly interface for.
96
+ </p>
97
+ <p>
98
+ The most modern and high-quality design made at a professional level.
99
+ </p>
100
+ </div>
101
+ <div class="item">
102
+ <h2>Web development</h2>
103
+ <p>
104
+ I'm currently working on a web development project that involves creating a responsive and user-friendly interface for.
105
+ </p>
106
+ <p>
107
+ High-quality development of sites at the professional level.
108
+ </p>
109
+ </div>
110
+ <div class="item">
111
+ <h2>Mobile Apps</h2>
112
+ <p>
113
+ I'm currently working on a mobile app project that involves creating a responsive and user-friendly interface for.
114
+ </p>
115
+ <p>
116
+ Professional development of applications for iOS and Android.
117
+ </p>
118
+ </div>
119
+ <div class="item">
120
+ <h2>Chat bot</h2>
121
+ <p>
122
+ I'm currently working on a chat bot project that involves creating a responsive and user-friendly interface for.
123
+ </p>
124
+ <p>
125
+ Create a chat system bot based on previously provided knowledge (RAG)
126
+ </p>
127
+ </div>
128
+ </div>
129
+ <div id="Experience" class="border">
130
+ <h1>Experience</h1>
131
+ <div class="item">
132
+ <h2>Education</h2>
133
+ <p>
134
+ I have a degree in Computer Science from a reputable university.
135
+ </p>
136
+ <p>
137
+ I've also completed internships in cybersecurity and software development.
138
+ </p>
139
+ </div>
140
+ <div class="item">
141
+ <h2>Work Experience</h2>
142
+ <p>
143
+ I've been working as a software engineer for a tech company.
144
+ </p>
145
+ <p>
146
+ I've developed various software solutions, including web applications and AI systems.
147
+ </p>
148
+ </div>
149
+ <div class="item">
150
+ <p>
151
+ I've also worked on various personal projects, including a chatbot and a mobile app.
152
+ </p>
153
+ <p>
154
+ I'm currently working on a web development project that involves creating a responsive and user-friendly interface for.
155
+ </p>
156
+ </div>
157
+ </div>
158
+ <div id="Portfolio" class="border">
159
+ <h1>Portfolio</h1>
160
+ <div class="item">
161
+ <p>
162
+ I've developed various software solutions, including web applications and AI systems.
163
+ </p>
164
+ <p>
165
+ Here are some of my most recent projects:
166
+ </p>
167
+ </div>
168
+ <div class="item">
169
+ <p>
170
+ I've been working on a web development project that involves creating a responsive and user-friendly interface for.
171
+ </p>
172
+ <p>
173
+ The most modern and high-quality design made at a professional level.
174
+ </p>
175
+ </div>
176
+ </div>
177
+ <div id="Blog" class="border">
178
+ <div class="item">
179
+ <p>
180
+ I've also worked on various personal projects, including a chatbot and a mobile app.
181
+ </p>
182
+ <p>
183
+ I'm currently working on a web development project that involves creating a responsive and user-friendly interface for.
184
+ </p>
185
+ </div>
186
+ <div class="item">
187
+ <p>
188
+ I've been working on a chat bot project that involves creating a responsive and user-friendly interface for.
189
+ </p>
190
+ <p>
191
+ Create a chat system bot based on previously provided knowledge (RAG)
192
+ </p>
193
+ </div>
194
+ </div>
195
+ <div id="Contact" class="border">
196
+ <div class="item">
197
+ <p>
198
+ I'm available for freelance work, web development, and cybersecurity projects.
199
+ </p>
200
+ <p>
201
+ Let's connect and explore new ideas together! ��
202
+ </p>
203
+ </div>
204
+ <div class="item">
205
+ <p>
206
+ You can reach me at [your email address] or [your phone number].
207
+ </p>
208
+ <p>
209
+ I'm always looking for opportunities to make a meaningful impact.
210
+ </p>
211
+ </div>
212
+ </div>
213
+ <script>
214
+ var About_link = document.getElementById('item_container_narration-ablink');
215
+ var Experience_link = document.getElementById('item_container_narration-explink');
216
+ var Portfolio_link = document.getElementById('item_container_narration-portlink');
217
+ var Blog_link = document.getElementById('item_container_narration-bllink')
218
+ var Contact_link = document.getElementById('item_container_narration-contlink');
219
+
220
+ var About_responsive = document.getElementById('About');
221
+ var Experience_responsive = document.getElementById('Experience');
222
+ var Portfolio_responsive = document.getElementById('Portfolio');
223
+ var Blog_responsive = document.getElementById('Blog');
224
+ var Contact_responsive = document.getElementById('Contact');
225
+
226
+ About_link.addEventListener('click', function() {
227
+ About_link.classList.add('active');
228
+ Experience_link.classList.remove('active');
229
+ Portfolio_link.classList.remove('active');
230
+ Blog_link.classList.remove('active');
231
+ Contact_link.classList.remove('active');
232
+
233
+ About_responsive.style.display = 'block';
234
+ Experience_responsive.style.display = 'none';
235
+ Portfolio_responsive.style.display = 'none';
236
+ Blog_responsive.style.display = 'none';
237
+ Contact_responsive.style.display = 'none';
238
+ });
239
+
240
+ Experience_link.addEventListener('click', function() {
241
+ Experience_link.classList.add('active');
242
+ About_link.classList.remove('active');
243
+ Portfolio_link.classList.remove('active');
244
+ Blog_link.classList.remove('active');
245
+ Contact_link.classList.remove('active');
246
+
247
+ About_responsive.style.display = 'none';
248
+ Experience_responsive.style.display = 'block';
249
+ Portfolio_responsive.style.display = 'none';
250
+ Blog_responsive.style.display = 'none';
251
+ Contact_responsive.style.display = 'none';
252
+ });
253
+ Portfolio_link.addEventListener('click', function(){
254
+ Portfolio_link.classList.add('active');
255
+ About_link.classList.remove('active');
256
+ Experience_link.classList.remove('active');
257
+ Blog_link.classList.remove('active');
258
+ Contact_link.classList.remove('active');
259
+
260
+ About_responsive.style.display = 'none';
261
+ Experience_responsive.style.display = 'none';
262
+ Portfolio_responsive.style.display = 'block';
263
+ Blog_responsive.style.display = 'none';
264
+ Contact_responsive.style.display = 'none';
265
+ });
266
+
267
+ Blog_link.addEventListener('click', function() {
268
+ Blog_link.classList.add('active');
269
+ About_link.classList.remove('active');
270
+ Experience_link.classList.remove('active');
271
+ Portfolio_link.classList.remove('active');
272
+ Contact_link.classList.remove('active');
273
+
274
+ About_responsive.style.display = 'none';
275
+ Experience_responsive.style.display = 'none';
276
+ Portfolio_responsive.style.display = 'none';
277
+ Blog_responsive.style.display = 'block';
278
+ Contact_responsive.style.display = 'none';
279
+ });
280
+
281
+ Contact_link.addEventListener('click', function() {
282
+ Contact_link.classList.add('active');
283
+ About_link.classList.remove('active');
284
+ Experience_link.classList.remove('active');
285
+ Portfolio_link.classList.remove('active');
286
+ Blog_link.classList.remove('active');
287
+
288
+ About_responsive.style.display = 'none';
289
+ Experience_responsive.style.display = 'none';
290
+ Portfolio_responsive.style.display = 'none';
291
+ Blog_responsive.style.display = 'none';
292
+ Contact_responsive.style.display = 'block';
293
+ });
294
+ </script>
295
+ </body>
296
+ </html>