archivos

pls don't spam the cbox with so many questions (i might not be able to respond at all) but feel free to send me a dm on twt or asking in retrospring!

log + blog

  • 23/04/23 tuts section added!

  • 18/04/23 misc added in codes section

  • 05/04/23 revamp

  • 17/09/22 revamp

  • 17/08/22 fonts added

  • 26/06/22 revamp

  • 04/01/22 was born this site!

  • 05/04/23 i had some issues with my fonts so idk when i'd be able to put them back here, sorry ⁓

  • 01/13/23 not giving more copies of old archivos crd design!

  • 30/10/22 some "new" fonts added (just limonysal old fonts tbh)

rescources

coding relatecodepenw3schoolkokopellijavascript free codeXP.css98.css7.cssmf2fmhtlm basics30 seconds of codeanimista css animationcss generationgradient css

carrds
if you want your resc carrd here, let me know in the cbox
fitzishimoricalliepochisupplieswatermelonepicmori

graphic sitesbarbaratomomimuñecaxyzpixel masterpostpeachie's doll collectionjasminnie weeblywhimsicalbonnibel's graphic collectionglitter partsoh pixels! buttonsengram

angel

Hello (⌒‿⌒) my name is Ángel@angeidiarys on twt and I use she / her pronouns; please check my selling carrd catalog.crd.co too! & if you like what I do and wants to support me use my referral code ANGEL thank you <3

HTML
70%
CSS
95%
JavaScript
25%

tutorials!

hello, this is a little section with tutorials, mostly by me i guess but not all bc i can't explain nothing even if my life depends on it (‾◡◝)

page tut

this can be done with pro plus, standard, etc bc you just need a embed!drop-shadow:• first add your embed• between <style> and </style> you need to add the id #main not page, not body.• open your brackets { add the drop-shadow CSS and close your brackets }• the final code must be looking like this:<style> #main { box-shadow: CSS; } </style>


background• the same step as before but between your brackets you need to add:background-image: url('URL');• by default, the background image will be repeat by itself (if it is smaller than your page) and if that's not the case you can add:background-repeat: repeat;• but if you don't want your background image to repeat, add, instead:background-repeat: no-repeat;• other property values for background image:background-repeat: repeat-x; bg img is repeated only horizontallybackground-repeat: space; there's a white space between the imgs while the first and last imgs are pinned to their respectively sides.background-repeat: round; here the bg imgs are squished/stretched to fill the space.• so your final code must be looking like this:<style> #main { background-image: url('mariposa.gif'); background-repeat: no-repeat; } </style>more about background image and background-repeat Property