diff --git a/LICENSE b/LICENSE index bf2da32..95c1393 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2024 PNHispanista +Copyright (c) 2024 jurassikdev34 Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: diff --git a/banner.jpg b/banner.jpg new file mode 100644 index 0000000..1db9304 Binary files /dev/null and b/banner.jpg differ diff --git a/index.html b/index.html new file mode 100644 index 0000000..3a39bdb --- /dev/null +++ b/index.html @@ -0,0 +1,131 @@ + + + + + + Partido Nacional Hispanista + + + + +
+ + + +
+ + + + + + +
+

Acerca de Nosotros

+

Misión: Promover la unidad, el desarrollo de los hispanos

+

Visión: Crear una comunidad hispana solidaria, justa, y próspera...

+

Objetivos:

+ +
+ + +
+

Ideología

+
+

Unidad de los Pueblos Hispanos

+

El principal problema de todos los paises hispanos actualmente es la poco unidad que tenemos incluso dentro del propio país, por ello, creemos que la unidad de aquellos que compartimos toda nuestra historia desde hace más de 500 años es la clave del desarrollo

+
+
+

Defensa del Catolicismo

+

Defendemos la tradición católica como base de nuestra cultura puesto que esta fue la que hizo de nosotros un gran imperio hace algunos años. Puesto que, aunque defendemos la libertad individual para todo, incluida la religion, la unidad religiosa es uno de los puntos más importantes para la ya mencionada unidad social.

+
+
+

Apoyo al Software Libre

+

El software es cada dia más importante en la vida de todo el mundo por ello promovemos el software libre, ya que este defiende las libertades y derechos individuales que creemos mejores

+
+
+

Promoción de Bitcoin

+

Impulsamos el uso de Bitcoin para la libertad economica. Las criptomonedas, a largo plazo, aseguran una moneda estable y que solamente puede continuar en aumento en su valor

+
+
+ + +
+

Nuestras Propuestas

+

Detalles sobre las propuestas del partido...

+ +
+ + +
+

Eventos

+

Próximos eventos y reuniones...

+

Nada por ahora :p

+
+ + +
+

Únete al Partido

+
+ + + + +
+
+ + +
+

Contacto

+
+ + + + +
+
+ + + + + + diff --git a/logo.png b/logo.png new file mode 100644 index 0000000..f8e82ac Binary files /dev/null and b/logo.png differ diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..a903021 --- /dev/null +++ b/styles.css @@ -0,0 +1,117 @@ +/* Estilos básicos de reset */ +* { + margin: 0; + padding: 0; + box-sizing: border-box; +} + +/* Estilos generales */ +body { + font-family: Arial, sans-serif; + color: #333; + background-color: #f5f5f5; +} + +/* Encabezado y navegación */ +header { + background-color: #A10F2B; + color: #fff; + padding: 1rem; + text-align: center; +} + +header nav ul { + list-style: none; + display: flex; + justify-content: center; +} + +header nav ul li { + margin: 0 1rem; +} + +header nav ul li a { + color: #fff; + text-decoration: none; +} + +/* Banner principal */ +.banner { + background: url('banner-image.jpg') no-repeat center center/cover; + color: #fff; + padding: 2rem; + text-align: center; +} + +.banner .button { + display: inline-block; + padding: 0.5rem 1.5rem; + background-color: #FFD700; + color: #333; + margin-top: 1rem; + text-decoration: none; + border-radius: 5px; +} + +/* Secciones */ +.content { + padding: 2rem; + background-color: #fff; + margin: 1rem auto; + max-width: 800px; + border-radius: 5px; + box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); +} + +h2 { + color: #A10F2B; + margin-bottom: 1rem; +} + +.ideology-item { + margin-bottom: 1rem; +} + +.ideology-item h3 { + color: #FFD700; +} + +ul { + list-style-type: disc; + padding-left: 20px; +} + +/* Formularios */ +form input, form textarea, form button { + display: block; + width: 100%; + margin-bottom: 1rem; + padding: 0.5rem; + border: 1px solid #ddd; + border-radius: 5px; +} + +form button { + background-color: #A10F2B; + color: #fff; + border: none; + cursor: pointer; +} + +form button:hover { + background-color: #870d23; +} + +/* Pie de página */ +footer { + background-color: #333; + color: #fff; + padding: 1rem; + text-align: center; +} + +footer a { + color: #FFD700; + text-decoration: none; +} +