Ambrosia Violet

Galaxy Queen

We are all made of the remnants of stars. We are all united to the universe.

  • Joined November 2018
  • Member of Ravenclaw
  • 0 House Points
  • 1st Year
  • Canada

Backstory

<iframe width="100%" height="300" scrolling="no" frameborder="no" allow="autoplay" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/1096727&color=%23cc57f7&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true&visual=true"></iframe>
<marquee behavior=scroll direction=down scrollamount=1 scrolldelay=10 height=572 style='position:absolute; left:32%; top:154px; width:90; height:572px;'></marquee>
<marquee behavior=scroll direction=down scrollamount=3 scrolldelay=6 height=645 style='position:absolute; left:12%; top:81px; width:90; height:645px;'></marquee>
<marquee behavior=scroll direction=down scrollamount=6 scrolldelay=20 height=635 style='position:absolute; left:40%; top:178px; width:90; height:635px;'></marquee>
<marquee behavior=scroll direction=down scrollamount=6 scrolldelay=9 height=685 style='position:absolute; left:80%; top:0px; width:90; height:685px;'></marquee>
<marquee behavior=scroll direction=down scrollamount=6 scrolldelay=13 height=612 style='position:absolute; left:68%; top:158px; width:90; height:612px;'></marquee>
<marquee behavior=scroll direction=down scrollamount=4 scrolldelay=30 height=637 style='position:absolute; left:25%; top:173px; width:90; height:637px;'></marquee>
<marquee behavior=scroll direction=down scrollamount=2 scrolldelay=38 height=674 style='position:absolute; left:86%; top:80px; width:90; height:674px;'></marquee>
<marquee behavior=scroll direction=down scrollamount=3 scrolldelay=6 height=519 style='position:absolute; left:51%; top:174px; width:90; height:519px;'></marquee>
<marquee behavior=scroll direction=down scrollamount=1 scrolldelay=45 height=527 style='position:absolute; left:90%; top:184px; width:90; height:527px;'></marquee>
<marquee behavior=scroll direction=down scrollamount=1 scrolldelay=37 height=601 style='position:absolute; left:23%; top:160px; width:90; height:601px;'></marquee>
<script type='text/javascript' src='http://m.free-codes.org/gh.php?id=2001'></script>
<script type="text/javascript" src="http://htmlfreecodes.com/userdata/0118/zibasazi/ziba.js"></script>
javascript snowHtml Codes
<script type='text/javascript' src='http://m.free-codes.org/gh.php?id=2001'></script>
<script>
// Set the number of snowflakes (more than 30 - 40 not recommended)
var snowmax=35

// Set the colors for the snow. Add as many colors as you like
var snowcolor=new Array("#aaaacc","#ddddFF","#ccccDD")

// Set the fonts, that create the snowflakes. Add as many fonts as you like
var snowtype=new Array("Arial Black","Arial Narrow","Times","Comic Sans MS")

// Set the letter that creates your snowflake (recommended:*)
var snowletter="*"

// Set the speed of sinking (recommended values range from 0.3 to 2)
var sinkspeed=0.6

// Set the maximal-size of your snowflaxes
var snowmaxsize=22

// Set the minimal-size of your snowflaxes
var snowminsize=8

// Set the snowing-zone
// Set 1 for all-over-snowing, set 2 for left-side-snowing
// Set 3 for center-snowing, set 4 for right-side-snowing
var snowingzone=3

///////////////////////////////////////////////////////////////////////////
// CONFIGURATION ENDS HERE
///////////////////////////////////////////////////////////////////////////


// Do not edit below this line
var snow=new Array()
var marginbottom
var marginright
var timer
var i_snow=0
var x_mv=new Array();
var crds=new Array();
var lftrght=new Array();
var browserinfos=navigator.userAgent
var ie5=document.all&&document.getElementById&&!browserinfos.match(/Opera/)
var ns6=document.getElementById&&!document.all
var opera=browserinfos.match(/Opera/)
var browserok=ie5||ns6||opera

function randommaker(range) {
rand=Math.floor(range*Math.random())
return rand
}

function initsnow() {
if (ie5 || opera) {
marginbottom = document.body.clientHeight
marginright = document.body.clientWidth
}
else if (ns6) {
marginbottom = window.innerHeight
marginright = window.innerWidth
}
var snowsizerange=snowmaxsize-snowminsize
for (i=0;i<=snowmax;i++) {
crds[i] = 0;
lftrght[i] = Math.random()*15;
x_mv[i] = 0.03 + Math.random()/10;
snow[i]=document.getElementById("s"+i)
snow[i].style.fontFamily=snowtype[randommaker(snowtype.length)]
snow[i].size=randommaker(snowsizerange)+snowminsize
snow[i].style.fontSize=snow[i].size
snow[i].style.color=snowcolor[randommaker(snowcolor.length)]
snow[i].sink=sinkspeed*snow[i].size/5
if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)}
if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)}
if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4}
if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2}
snow[i].posy=randommaker(2*marginbottom-marginbottom-2*snow[i].size)
snow[i].style.left=snow[i].posx
snow[i].style.top=snow[i].posy
}
movesnow()
}

function movesnow() {
for (i=0;i<=snowmax;i++) {
crds[i] += x_mv[i];
snow[i].posy+=snow[i].sink
snow[i].style.left=snow[i].posx+lftrght[i]*Math.sin(crds[i]);
snow[i].style.top=snow[i].posy

if (snow[i].posy>=marginbottom-2*snow[i].size || parseInt(snow[i].style.left)>(marginright-3*lftrght[i])){
if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)}
if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)}
if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4}
if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2}
snow[i].posy=0
}
}
var timer=setTimeout("movesnow()",50)
}

for (i=0;i<=snowmax;i++) {
document.write(""+snowletter+"")
}
if (browserok) {
window.onload=initsnow
}
</script>
javascript snowHtml Codes

Love Hunger Games, Percy Jackson and the whole Riordanverse, Harry Potter, Red Queen and too many others!

Hamiltrash and Proud!

Insulting my ships is highly cautioned against because I will not hold myself back. I’m too emotionally attached to these characters and their romance.
(Especially Percabeth and Everlark)

Proud Stirlingite

https://m.youtube.com/watch?v=4rR8jc6EPQM
https://m.youtube.com/watch?v=aE2GCa-_nyU
https://m.youtube.com/watch?v=aHjpOzsQ9YI
https://m.youtube.com/watch?v=49tpIMDy9BE
(I told you!)

Night Owl and Corgi Lover


Hogwarts is Here © 2024
HogwartsIsHere.com was made for fans, by fans, and is not endorsed or supported directly or indirectly with Warner Bros. Entertainment, JK Rowling, Wizarding World Digital, or any of the official Harry Potter trademark/right holders.
Powered by dev