-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
89 lines (80 loc) · 4.63 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="¡Hola! Bienvenido a Formen. Aquí encontrarás proyectos interesantes para explorar." />
<meta name="keywords" content="formen.cc, sitios web, cards, desarrollo web" />
<meta name="author" content="Formen" />
<link rel="icon" href="./IMAGES/logo_small_icon_only.ico" type="image/x-icon" alt="Formen Logo">
<link rel="apple-touch-icon" href="./IMAGES/logo_small.ico" alt="Formen Logo">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.0/css/all.min.css" />
<link rel="stylesheet" href="./CSS/styles.css" />
<title id="page-title">Formen - Descubre Mis Sitios Web</title>
</head>
<body>
<!-- Landing Page Section -->
<section class="landing-page">
<div class="landing-text">
<h1 id="landing-title" data-es="Descubre Mis Proyectos" data-en="Discover My Projects">Descubre Mis Proyectos</h1>
<p id="landing-description" data-es="Bienvenido a Formen, donde encontrarás una colección de mis proyectos más emocionantes. Explora, aprende y descubre innovaciones en el mundo web." data-en="Welcome to Formen, where you will find a collection of my most exciting projects. Explore, learn, and discover innovations in the web world.">
Bienvenido a Formen, donde encontrarás una colección de mis proyectos más emocionantes. Explora, aprende y descubre innovaciones en el mundo web.
</p>
</div>
</section>
<!-- Language Switcher -->
<div class="language-switcher" style="text-align: right; margin: 20px; padding: 10px;">
<select id="language-switcher" style="padding: 10px; font-size: 16px; border-radius: 5px; border: 1px solid #3498db; background-color: #f0f0f0; cursor: pointer;">
<option value="es">Español</option>
<option value="en">English</option>
<option value="pt">Português</option>
<option value="fr">Français</option>
<option value="it">Italiano</option>
</select>
</div>
<!-- Nuevo Div de Hacktober -->
<div class="promo-container">
<a href="https://hacktoberwall.formen.cc/" target="_blank"></a>
<div class="promo-text">
<h2>HACKTOBER WALL</h2>
<p id="landing-wall" data-es="Este es mi más reciente proyecto enfocado para ayudar a la comunidad de programadores en esta festividad de hacktoberfest" data-en="This is my most recent project aimed at helping the programming community during the hacktoberfest celebration.">
Este es mi más reciente proyecto enfocado para ayudar a la comunidad de programadores en esta festividad de hacktoberfest
</p>
</div>
</div>
<!-- Nuevo Div de Publicidad -->
<div class="promo-container">
<a href="https://discord.com/oauth2/authorize?client_id=739231660721045524&permissions=36768832&scope=applications.commands%20bot" target="_blank">
<img src="./IMAGES/PROMO.jpg" alt="Publicidad Kazuto" class="promo-image">
</a>
<div class="promo-text">
<h2 data-es="KAZUTO" data-en="KAZUTO">KAZUTO</h2>
<a href="https://discord.com/oauth2/authorize?client_id=739231660721045524&permissions=36768832&scope=applications.commands%20bot" target="_blank">
<button id="discord" class="promo-button" data-es="Agregar a un servidor" data-en="Add to a server">Agregar a un servidor</button>
</a>
</div>
</div>
<!-- Project Filters -->
<header>
<h1 id="projects-title" data-es="Proyectos" data-en="Projects">Proyectos</h1>
<div class="filters">
<button class="filter-btn" data-filter="all" style="background-color: #3498db;" id="filter-all">Todos</button>
<button class="filter-btn" data-filter="new" style="background-color: #e74c3c;" id="filter-new">Nuevos</button>
<button class="filter-btn" data-filter="updated" style="background-color: #2ecc71;" id="filter-updated">Actualizados</button>
<button class="filter-btn" data-filter="contributed" style="background-color: #f39c12;" id="filter-contributed">Contribuidos</button>
<button class="filter-btn" data-filter="else" style="background-color: #9b59b6;" id="filter-else">Otros</button>
</div>
</header>
<!-- Projects Container -->
<section class="projects-container">
<!-- Project cards will be dynamically inserted here -->
</section>
<script src="./JS/script.js"></script>
</body>
<footer style="background-color: #333; color: #fff; padding: 20px; text-align: center; font-family: Arial, sans-serif;">
<p style="margin: 0; font-size: 18px;">Jolly Jolli</p>
<p style="margin: 5px 0; font-size: 14px;">
<a href="mailto:[email protected]" style="color: #fff; text-decoration: none;">[email protected]</a>
</p>
</footer>
</html>