Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
luisangelmaciel committed Sep 16, 2023
1 parent 6efd773 commit 7043750
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
33 changes: 33 additions & 0 deletions js/footer-random.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
var elements = {
copyYear: document.querySelector('.copyYear')
};
var footerRandom = [
new Date().getFullYear() + ' 🙂 @luisangelmaciel ',
new Date().getFullYear() + ' 😏 @luisangelmaciel ',
new Date().getFullYear() + 'Echa un vistazo a <a href="https://www.xbr.pw">MyApps</a> ',
new Date().getFullYear() + ' 🙃 @luisangelmaciel ',
'La resaca dura un día.Los recuerdos son para siempre',
'Si tiene tatuajes, coge rico',
'¡Qué cafecito ni qué nada, coger señores, el clima está para coger!',
'Deberías estar desayunando pito y no avena remojada.',
'Vamo a jugar al goloso, tú te agachas y yo te lo roso.',
'Que te chupen todo, menos la energía. ',
'Que el deseo sea mutuo y las ganas de los dos. ',
'Exigo su _ en mi _',
'¿Adivinen qué bombón cumple años en febrero ?',
'Soy el perverso que le puedes presentar a tus papás por que tengo cara de gente decente.',
'Con los besos en el cuello no se juega. ',
'Es que contigo puedo ser tan pervertido como tierno ',
'Ojalá este calor me derrita las lonjas',
'Nadie en esta ___ sabe que traigo jockstrap',
'Que ganas de coger mi mochila e irme a viajar...',
'Me siento muy mal, creo que necesito un viajecitomol',
'Viajar es un derecho del ser humano y tambien una responsabilidad',
'Una parte de mi quiere ir de viaje y la otra también',
'Dicen si me sigues en Twitter, tendrás muchos viajes este año y el que viene.',
'Mañana cuando despiertes te vas a dar cuenta que todo pasó muy rápido.¡Disfruta el viaje no te lo pierdas!',
'Tierra trágame y escúpeme en Acapulco',
];
var rand = Math.floor(Math.random() * footerRandom.length);
elements.copyYear.innerHTML += footerRandom[rand];
reset();
1 change: 1 addition & 0 deletions js/myhead.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
document.getElementById("myhead").innerHTML = "<p>Hello World!</p>";

0 comments on commit 7043750

Please sign in to comment.