updates
14/03/22 this site was created
22/03/22 i redid the design
14/03/22 changed to a simpler
design ; ib ishimori
29/03/22 eerm accidentally deleted the
entire thing but i saved it on pastebin
30/03/22 added, fixed, and removed stuff
23/05/22 changed the photo
27/05/22 changed to an even simpler
design ; cr mariposa
28/05/22 added more fonts + a
menu area + more misc codes
05/09/23 updated links (resources), added more to music players and link codes
text codes bouncy text • marquee text • wobbly text • floating text • shaky text • pop text • text scramble • rubberband text • glitch text • news ticker • bubble text • jerky text • flirty text • bubble text (2) • glitch text • text w image as the bg • tumblr wobble text • tilting text • stitch text • rolling text • sideways bounce text
link codes question mark hover • expand • enlarge text • float • blur • wipedown • sound effect • tooltip • ticker
img codes zoom in blur • glitch • twitch • shake • floating • fog mask • double border • 'drawn' border • lace border • pink lace border • greyscale • rotate • star mask • hrt mask • wobble • spinning • tooltip • pop img • custom image fall pastel blue lace border
scrollboxes borderless • skewed • dash border • lace border • rounded edges • scrollbox with mark • retro scrollbar • img/gif bg • bow border • invis scrollbar • two fonts in a scrollbox • hover to reveal scrollbox • ipod crd scrollbar • louv crd scrollbar • hitoshi ju mp scrollbar • expand on hover • title disappears on hover hover to reveal scrollbox 2
menus jake's blur menus • gina crd menu • dropdown menu • estrellita menu • claris crd menu • intruosers menu • slide up container • tabs thingy • limonsyal menu • lala menu
misc codes typing tab title • marquee tab title • disable left click + alert • draggable div • website counter • windows title alert message • img clicksplosion • TV filter • custom cursors • custom selection • this thing • flip crd • yui crd • magica hearts lippies crd • custom image fall
♪♪♪ corazon music player • cr ramdons • sanrio music player • draggable music player • spinning cd player • kill bill player • simple music player • notebook crd music player • nako ju mp music player • speaker music player • kyomoto crd music player
how to add fonts!
click on the images for visual steps
PRO STANDARD:
(option 1)
1. pick out your font then copy & paste the code into an embed
2. put your text in between the "> <"
(ex: <div id="id">text goes here</div>)
3. if this isn't included in the code, then copy & paste it under "</style>" and match the "id" to what ever the #id in your code is (you can also change it but they must match)
(option 2)
1. pick out your font then copy and paste the code into an embed
2. for the text you wanna apply the font to, click the gear on your text settings (at the top) and copy the ID (ex: #text01)
3. replace the ID in your code to the one from your text & type whatever u want in the text!
PRO PLUS:
(option 1)
1. pick out your font then copy & paste the code into an embed
2. copy the style id from your code and into your text settings (or vice versa)
(option 2)
1. pick out your font then copy & paste the code into an embed
2. put "font-family: name of font;" into the style settings of your text
how to make & download fonts!
click on the images for visual steps
you will need a dropbox account to do this! no, you don't have to pay
it's best & most recommended to do this on desktop
1. find a site where you can download fonts for free, a popular one is dafont.com which i will be using here
2. download any font you come across that you like
3. open your files app, if the folder with the font is zipped then unzip it (this process is different depending on your device, i suggest following a yt video)
4. upload the .otf or .ttf file from the folder onto dropbox
5. once it's done uploading, copy the link & replace the 'www.' to 'dl.' & delete the '?dl=0' at the end
6. set up your code, giving it a @font-face, style #ID, naming your font, & inserting the link (example in the pictures). make sure your font-family under the ID and font-face match!!
7. if needed, add div tags. tutorial for adding custom fonts into carrds is here
! STEP 3 IS NOT PICTURED !
this step is different for everyone
how to position elements!
PRO STANDARD:
1. insert what ever code you're using into an embed
2. in your style settings (under the ID), copy & paste the following:
position: relative;
z-index: 100;
top: 10px;
3. you can change 'top' to bottom, left, or right. whichever one you put, the element will be pushed from there
to specify:
top = element will be pushed downwards from the top
bottom = element will be pushed upwards from the bottom
left = element will be pushed rightwards from the left
right = element will be pushed leftwards from the right
4. you may also play around with the number (after the direction) by making it bigger or smaller depending on how much you want the element pushed, do not delete the 'px'
PRO PLUS:
1. insert whatever element you plan on moving (i'm positioning text over an image)
2. in your element's style settings add the same bolded code from the standard tutorial
3. mess around with the number (after the direction) to position it how you'd like!
how to rotate elements!
PRO STANDARD:
(option 1)
1. create a code with your element (i'll be using text)
2. under the ID add this:
transform: rotate(-20deg);
3. play around with the number! if you wanna rotate your element the other way, remove the - in front of it (ex: 20deg)
(option 2)
1. match the ID of your element from advanced settings to a code
2. add transform: rotate(-20deg); under the ID in the code
3. publish it and change to your liking!
PRO PLUS:
1. set up whatever element you're rotating
2. add transform: rotate(-20deg); under the style settings
3. play around with it until you like it!
how to change the audio in a music player!
you will need a dropbox account to do this! no, you don't have to pay
it's best & most recommended to do this on desktop
1. copy the link of a song/audio you want from youtube
2. paste the link onto this site & download it to your device as an mp3
3. upload the song file into dropbox
4. copy the link & change the 'www.' to 'dl.' & delete everything past mp3 at the end
5. paste your modified link into the audio source of your music player & you're done!
dropbox links don't work with glenthemes music
players anymore, check here for different ways to
apply music to them
how to make text & containers scrollable!
click on the images for visual steps
PRO STANDARD:
for text:
1. set up your embed as you would a usual text
2. match the style ID to the one of your text
3. add the following under your style ID -
overflow: auto;
height: pick your desired height px;
width: pick your desired width px;
for container:
1. set up an embed similar to the one for text
2. match the style ID to the one of your container
3. add the following under your style ID -
overflow: scroll;
height: pick your desired height px;
width: pick your desired width px;
PRO PLUS:
for text:
1. set up your text & add the highlighted content from the pro standard tutorial into your style settings
for container:
1. place a container and under your style settings add the highlighted content from the pro standard tutorial
how to put a border on your elements!
~ this looks best on containers & images
but works on mostly everything!
PRO STANDARD:
1.
2.
3.
PRO PLUS:
1.
2.
3.
how to put a border on the top of your page!
this works on carrd free & pro
1. set the background of your carrd as an image & insert the picture you want
2. set position to top
3. set tile to horizontal
4.the size setting isn't important but you can mess with it until it fits your liking
LINKS ~
some links to other carrds & resourceful sites!
coding
codecademy • w3schools • js free code • pastebin • codepen • stack overflow
carrds
fitz • yokai • neogeo • watermelon • sweetie • hauntedmansion • xyz • pochi • vampy • marigold • floras • noodles • love • rico • himiko • lifted • gardenia • resource • hatecrime • pix • html • mist • swan
misc
symbols • punycode • hex codes • gif compressor • dafont • google fonts • mf2fm • responsinator • butter
graphics
tomomi • jasmine weebly pixels • gifs 4 carrd • cursors4u • pixel buttons • graphic effects • cute cursors • pixel diary • pix • pixelbank • charm