my last day at the internship AND the "final" stage of my To-Do List with PHP, HTML and CSS:
add tasks by adding a date, the task, choosing a priority and "+" for submitting
tick off tasks you did with a checkbox
delete tasks
(make it look a lil bit prettier with CSS)
i had to present it (nightmare) to my coworkers at my internship today and it was... quite amazing? i could perfectly explain almost all of the data i put in the code and was able to answer ... most of their questions! :o it was SO amazing they even offered me an apprenticeship???? ahhhhhh (that's what i wanted i'm so so so so happy jkokjrjejjddkfkdkdkd)
Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
✓ Live Streaming✓ Interactive Chat✓ Private Shows✓ HD Quality
Anya is LIVE right now
FREE
Free to watch • No registration required • HD streaming
In Ao3 say you are making a newspaper clipping. Or a fake essay for your character to write. Whatever you need a title for this is how you do it in HTML.
First, make sure you are in HTML in the text box and you will need to put the title that you want (or you really just want some big text. I won't judge) and put a < h1> without the space at the beginning of it. So for example
< h1> Hola
Again without the space. Then at the end of the text, you will put < /h1> again without the space. example
< h1> Hola < /h1>
Now say you think this is too big for your liking. Or you need a subheading for whatever reason. Well, you can use the same basic format: <h_> and </h_> all the way up to six.
Now you may be thinking "Wait I want it to be smaller. Why would I go bigger in number? Won't it be bigger?" No, the bigger the number in this case would be smaller the text. So a little bit of a guide if you are still confused or you just want it. Without the space.
< h1> </h1> Heading
< h2> </h2> Sub Heading
< h3> </h3> Sub Sub Heading
< h4></h4> Sub Sub Sub Heading
< h5></h5> Sub Sub Sub Sub Heading
< h6></h6> Sub Sub Sub Sub Sub Heading
You can only go up to (down to?) 6 with the heading stuff.
I finished my module on the fundamentals of HTML, I got some module practice in, and I made my own little project using what the module taught.
I showed one of my friends and he said he thought it was an adoption website. I know it’s not the most impressive website, but I’m proud of myself putting the time, effort, and practice in. This project taught me how to put a YouTube video into my code! I learned something new because of this! I was trying to do it how my course taught using the <video> tag, but it wasn’t working. I had everything there like it should like:
I then went to the forums of Codecademy and some had suggested using the <iframe> tag, but that didn’t work either. I eventually came across someone else who suggested using YouTube’s embed link. This is different than the share link. So, I did and huzzah!
The video isn’t of my pets, I just wanted to practice embedding videos so I used a random one.
But yeah! Seeing the YouTube embed link showed me some new code that I was missing when I tried it on my own. But all in all a wonderful practice! I spent about in total 2 hours today! :D Excited for more learning tomorrow!
Though, tomorrow I have work AND college plus a doctor appt :(
The only time I’ll really be able to get my stuff in is in the morning :/ like EARLY morning...
So fun being an adult with no time to do anything :D
I gotta do it though. Work hard during the week. Get those grades I want, and get to rest on the weekend. I’m not doing ANY HOMEWORK OR WORK WORK ON THE WEEKEND! Only the personal work for my goals cause that is gonna improve my life.
after a week of studying i've completed my first course about HTML!! so far i've learnt the basic facts and syntax about html, like <!DOCTYPE html>, <html> and <body> on top of any html document you build:)
Forms were the most interesting part to me of that course, it makes the website way more interactive and it's so much fun to play around with it.
My next step is to learn more about CSS and designing the website to my liking. I'm excited!
hi everyone, long time no see! but don't you dare think i just layed in bed and let my worthy time waste away (i did that the week before) !!! i actually had my first official (paid:o) internship week and slowly but surely i will guide your through my time there and show u all of the exercises i did!
i hope it might help a few of u and if u want to, feel free to try some of those exercises yourself!!
!!!! I just really have to add: i'm not the best at explaining and generally, when explain my code on this blog, i actually try to explain it to myself! if you don't understand what i'm talking about or if you think something is wrong, pls feel free to hmu and tell me about it:)
Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
✓ Live Streaming✓ Interactive Chat✓ Private Shows✓ HD Quality
Anya is LIVE right now
FREE
Free to watch • No registration required • HD streaming
after getting to know the language itself and giving myself an overall understanding of it, i started with my first task:
Let your program print out every number from 1-100. If the number is dividable by 3, the program has to print "Fizz" instead of the number. If it is dividable by 5, it has to print "Buzz". If both (dividable by 3 & 5) apply, it has to print "FizzBuzz".
(if i explain smth wrong or if you know easier ways to solve that task, please feel free to comment or text me! i'm more than open for help!)
Well that's how i did it:
first off i went and created an integer variable "num" with the value 100
i built a for loop starting from 0 on and told the program to keep going until it went up to 100 ("<=" means i want it to stop at exactly 100, "<" would end at 99)
inside of the for loop i put a few if statements in
the 1st if tests whether the current number is dividable by 3 and 5
here i put "if (i % 5 == 0 && i % 3 == 0)"... why?
-> "i" is the variable for the number that is "being tested" rn. We want to find out whether it is dividable by 5. For that we use "%".
This means, let's say i=2. How often does 2 fit into 5? 2 times. This results to 4 (2+2=4, another 2 won't fit into 5). now 5-4=1 soooo 2 % 5 == 1. 1 is the rest.
So , back to my code: to find out if "i" is dividable by 5, i%5 has to be equal to 0. If i%5 has any rest, it means that it is not dividable by 5. Same with 3 ofc.
The && here just means "and".
so.. long story short: IF "i" is dividable by 5 AND 3 print "FizzBuzz" (instead of "i") and go on to the next number. if it is not, go into the next if statement
the next "else if" statements say: if it is not dividable by 5 AND 3, is it dividable by 3/ 5 only? IF yes, print "Fizz"/ "Buzz" and keep going with the next number, else: go into else statement
the last else statement says: if you didnt apply to the first few if statements, just print "i"
.. well and that's about it:) programming this one was really fun and i enjoyed sound it so much ahh🩷🩷🖤