I legit just started learning html, and my brain is already exploding *O*. MY BRAINN AHHHHHHHHHHHHHHHHHHH. I’m sure I’ll get it eventually lmao :P
(If anyone wants to give me tips or advice, that would be great :) )
I legit just started learning html, and my brain is already exploding *O*. MY BRAINN AHHHHHHHHHHHHHHHHHHH. I’m sure I’ll get it eventually lmao :P
(If anyone wants to give me tips or advice, that would be great :) )
4 Kudos
Comments
Displaying 3 of 3 comments ( View all | Add Comment )
bri ˎˊ˗
w3 is an INCREDIBLE site to learn from and also if ur into profile coding lesrning how to see what element is what from inspect element is incredibly useful :] that took me so long to figure out unfortunately LOL but its really not hard !! also learning the order things are supposed to go in ect in code helps same with actually learning what does what and WHY it does that, such as
.profile .h3
^^this targets the profile section of the page and THEN targets the third heading !! this little bit helped me alot with creating my own layout codes:]
Thanks :)
by Trashrabbit >XP; ; Report
GOAT
i just wrote this about ten mins ago but u can use it for ur blog title if u want :o
<style>
@font-face {
font-family: VCRMono;
src: url("http://hellafresh.neocities.org/vcrmono.ttf") format("truetype");
}
.title {
animation: goatgrow 2s ease-in-out infinite;
-webkit-text-stroke: 1.3px silver;
letter-spacing:3px;
font-family: "VCRMono";
text-shadow:1.5px 1.5px pink; }
@keyframes goatgrow {
0% {
transform: scale(1);
}
50% {
transform: scale(1.5);
}
100% {
transform: scale(1);
}
]
</style>
there u go a freebie to start u off
xoxo
Thanks :D
by Trashrabbit >XP; ; Report
Lukas
realll!! I spent four hours last night setting up my profile.. Id say focus on CSS, its more important for adjusting your style than html itself. also if you're on a computer use your inspect tool omg!! I was trying to code my profile without the inspect tool for like an hour and nothing made sense ;-; The inspect tool lets you see the name of each specific part of the webpage so you know how to reference it when you're typing out your code!
Thanks, I’ll keep that in mind :D
by Trashrabbit >XP; ; Report
yeah inspect element is v good cause you can also edit the css locally in yr browser and then
copy/paste into ur stylesheet
play around just treat it like lego
cause tbf it is <33
by GOAT; ; Report