Welcome to 1925!

07/21/22: 1925 was made!
© ishimori crd for the layout

About Me

hi i’m wei or amari; please refer to me with he/it/they pronouns ♡ sixteen, seasian. i identify as bigender & bisexual. i speak english and ilonggo, currently relearning chinese! i’m neurodivergent (adhd), and i mainly have rcd, gad, and social anxiety. my virtual personality is different from my irl personality

B4 You Interact

i suffer with mental problems. i change my name every now and then, so just call me by how i introduce myself as. my carrd also changes a lot, so there will always be changes about me.
your attitude = my attitude.
i use tone indicators, and i prefer if you’d use them too when it’s necessary. i use profanity, make nsfw jokes, and platonically flirt selectively.

Scrollboxes

simple border double border no border expand on hover dashed border colored bg gradient bg img/gif bg uneven border scrollbox with mark two fonts in a scrollbox lace border brown lace img hover to reveal scrollbox img blur and shake to reveal scrollbox horizontal scroll title disappears when scrollbox expands box shake blur and scroll to reveal scrollbox beaded hearts tiled flowers biscuit border blue lace doily

Music Players

img bounce on hover draggable circle pop marquee w pixel circle spin cd spin pixel to music player on hover cutie circular speaker ongaku madomagi mp3 with pixel 2000s spinning icon kill bill marquee glenthemes players found here

Backgrounds

NEW! butterfly image fall radial gradient page bg falling sakura leaves custom image fall tv set filter vhs overlay falling hearts snowing snowflakes star warp pixel rain blocks blobs in a jar blobs in a jar with symbol change bubblebath rain falling

Cursors & Scrollbars

hidden scrollbar colored scrollbar gradient scrollbar old web scrollbar cute cursors img clicksplosion tinkerbell bubbles normal clicksplosion smokey fog love hearts flowers music note question mark image trail cursor trail

Miscellaneous

this carrd's update log jake's blur menus gina crd co menu simple drop down menu cbox website pet webneko counter 1 counter 2 typing tab title marquee tab title click sound effect message alert when page opens disable left click + alert draggable elements intro animations tabs thingy password protection on carrd cbox on hover as seen in this carrd media rule html forms shaky hand

CSS Framework Sites

7.css 98.css XP.css NES.css clay.css paper.css

Templates

NEW! miu drr ac - demo here ishimori.net blog crd - demo here

Fonts

to insert custom fonts in carrd, refer to the tut in fonts.crd.co! all other fonts can be found in our pastebins~

Backgrounds

click on the images to expand! scroll for more~

Spotify Embed

click on the imgs to enlarge! if imgs dont load try refreshing your tab

1. open your playlist or track on spotify on desktop (does not work on mobile)2. click on the three horizontal dots found beside the download button and hover on "share"3. click on "embed playlist"

4. customize or edit your color or sizing in the preview menu5. check the box where it says "show code" and copy your embed!

6. paste your code into an inline embed in carrd and you're done! result:

for a spotify track click on the three horizontal dots beside your selected track, hover on "share" and click "embed track" and all the steps are pretty much the same as you would a playlist!

Blur on Hover

click on the imgs to enlarge! if imgs dont load try refreshing your tab

1. paste this code into an embed:<style>
a:hover {
webkit-filter: blur(1px);
filter: blur(1px);
}
</style>

if you want to blur all links then keep the "a" and if you want to blur all image links change the "a" to "img" if you want only a certain element to blur on hover, add your element id before a:hover

Remove Cursor Link

click on the imgs to enlarge! if imgs dont load try refreshing your tab

1. select whatever cursor you want from cursors4u and copy the universal css/html code

2. remove everything that comes after </style> and you're done!

Image Plays Music

click on the imgs to enlarge! if imgs dont load try refreshing your tab

for pro standard1. copy this code and paste in in an embed<script>
document.getElementById("image01").onclick = function() {
var audio = document.getElementById("audio");
if (audio.paused) audio.play();
else audio.pause();
}
</script>
2. "image01" is the element id of your image element. to view this go to the settings of your image and change it to whatever the element id is (e.g image02, image03, etc.)3. in the same embed add
<audio id="audio" src="MUSIC-URL-HERE"></audio>
and replace MUSIC-URL-HERE with the link of the music file you want to play. a tut on how to download and import music files can be found herethis is what your code should look like:

for pro plus1. go to the settings of your image element and click on "events", then add this code to the "on click" settingsdocument.getElementById("audio");
if (audio.paused) audio.play();
else audio.pause();
2. then, in an embed add<audio id="audio" src="MUSIC-URL-HERE"></audio>and replace MUSIC-URL-HERE with the link of the music file you want to play. again, a tut on how to download and import music files can be found herehere's how everything should look like:

extra: this can also work with text elements. just replace image01 with text01 or whatever the element id of your text is and it should work the same, both for pro plus and standard!