Well... I had been sick the past few days but right now I'm better. Atleast well enough to study. Tomorrow we have school till 1, I'll be back by 3 so after that I'll start my studies... I have my term exams from next week, I just feel exhausted and tired now T-T
To do list for the weekend :
Complete English assignment
Complete 1 unit of English (3 lessons + grammar)
Complete 1 chapter in Accounts + Revise some previous chapters
Complete 2 chapters in Economics
Complete 8 chapters Part 1-3 in Business Studies
I hope I'm able to complete these :")
Hey! Where r u from?! And in what grade?
Well hello! :D
I'll answer one of your questions, I'm in the ending of junior year and going to the senior year. (literally only 2 more exams and I'm done with this year)
As for the second question, I'm kinda uncomfortable sharing where I'm from so as for now, I'd like to keep that private, I hope it's okay for you <3
Take care! :))
Thanks for the tag! :D
Tagging: @girlwithherheadinthestars @valiantcoffeelove @wandering-whisperer @gajina @ros3ybabe @desi-girll and @-anyone-who-wants-to (no pressure)
Thanks for the tag @theparisianowl ! 💗
Rules: make a poll with five of your all time favourite characters and then tag five people to do the same. See which character is everyone's favourite.
This is hard.
No pressure tags: @kaaaaaaarf @winryrockbellwannabe and anyone else who'd like to do it!
So... I'm kinda new here, so hi. What can you find on my blog? Study tips, rants about books, anything quotes and literature and self care tips.
So... Welcome :))
I can't say that I'll be frequent on this, I've created this blog just as a motivation for me to study and get more productive.
A little bit about myself... My name is Isabelle, I'm currently ending my Junior year in highschool. I was homeschooled for two years after the pandemic and this is just like some of the things that I've followed through my middle school and high school journey.
Again, I won't promise to be consistent but I'll try my best! :D
Reminder
It's okay if you didn't achieve the things that you worked hard for.
It's also okay if you did.
It's okay if you feel like you didn't try harder.
It's also okay if you did.
No matter what people say, you did your best.
If you didn't achieve the goal that you said you would, people will say "She didn't try hard enough"
If you did achieve the goal, they would say "She sacrificed too much"
No matter what, people will talk
So, be gentle to yourself.
The results are the sweetest when you've worked for it. Don't. Forget. That
Gosh!!! I really appreciate that, I'm glad to hear it :) and @hannahxrosey @ashs-reverie @girlwithherheadinthestars @thelastneuron @gajina and alot more! <3
@crowleybrekkers @swift-of-corvids @bookscorpion73 <33
What to do during breaks? (as in no school)
In terms of preparing for the next semester or year…
Hey Anon! :D
How To Productively Use Time During Breaks For Preparing
These are some tips that I've used after experimenting with a lot of things
___________________
Not More Than 2–3 Hours
I recommend this because you have a high possibility of burning out during school weeks if you even study during breaks. So, this is why just three hours is more than enough. Spend your time enjoying too.
Concentrate On Basics
This is one of the best ways to spend your breaks. If you're weak in a particular subject [Mine was Accounts], I spent my summer and my term breaks strengthening my accounting basics.
It helped so much when school started because everyone was trying to catch up on the advanced topics, but I could straightaway start with the year's materials. So, build your basics or revise that year's topics. Most of the subjects are just built in layers. So if you learn something in junior year, then it will likely appear in senior year but a bit more advanced.
Watch Concept Videos [Basics or Coming Term/Semester]
You could go through the syllabus for the next term or year and, based on that, watch videos related to that on YouTube. You can first go through the coming year's topics, and then you can decide if you're confident with new topics or if you still haven't figured out the basics. But these really help.
Prepare Cheat Sheets In Advance
If you get your hands on the coming year's textbook, then go through the chapters and write all the formulas or theorems [Shorten them]. Those are your cheat sheets for the whole term/year. Great for revision. You can even start practicing with this, but it's good to have these cheat sheets.
Complete Language Papers
I had two languages all throughout high school. And this trick always worked for me. A week before school starts, I'd literally sit and complete reading through my English and Arabic textbooks. I didn't do the exercises, but I completed all the lessons and sometimes even had short notes of the story ready. It doesn't take much time to complete your language syllabus. I always recommend this.
Tackle Your Grammar
Take it a step further [if you want] and revise or learn new grammar topics. I say this because, honestly, grammar takes some time to soak in, so by the time school starts, you'll have confidence with your language papers. Which honestly makes your work easier in the long run.
Improve Math [If You Have A Number Based Paper]
If you have any paper that is number-based, then work on your mental math. Practice with it. It helps during exams and saves a lot of time. Literally. Especially if you're not allowed to use a calculator. Memorize the square and cube roots from 1 to 10. Or anything else that matters.
_______________________
Do take time to rest because, honestly, this is the time you'll get to rest. So, enjoy too xD
Other than that, I hope this helps you :)
Introduction To HTML
[Note: You need a text editor to do this. You can use Notepad or Text Edit. But it's so much better to download VS Code / Visual Studio Code. Save it with an extension of .html]
HTML stands for Hyper Text Markup Language
It is used to create webpages/websites.
It has a bunch of tags within angular brackets <....>
There are opening and closing tags for every element.
Opening tags look like this <......>
Closing tags look like this
The HTML code is within HTML tags. ( // code)
Here's the basic HTML code:
<!DOCTYPE html> <html> <head> <title> My First Webpage </title> </head> <body> <h1> Hello World </h1> <p> Sometimes even I have no idea <br> what in the world I am doing </p> </body> </html>
Line By Line Explanation :
<!DOCTYPE html> : Tells the browser it's an HTML document.
<html> </html> : All code resides inside these brackets.
<head> </head> : The tags within these don't appear on the webpage. It provides the information about the webpage.
<title> </title> : The title of webpage (It's not seen on the webpage. It will be seen on the address bar)
<body> </body> : Everything that appears on the webpage lies within these tags.
<h1> </h1> : It's basically a heading tag. It's the biggest heading.
Heading Tags are from <h1> to <h6>. H1 are the biggest. H6 are the smallest.
<p> </p> : This is the paragraph tag and everything that you want to write goes between this.
<br> : This is used for line breaks. There is no closing tag for this.
-------
Now, we'll cover some <Meta> tags.
Meta tags = Notes to the browser and search engines.
They don’t appear on the page.
They reside within the head tag
<head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content="Website Description"> <meta name="Author" content="Your Name"> <meta name="keywords" content="Websites Keywords"> </head>
Line By Line Explanation:
<meta charset="UTF-8"> : Makes sure all letters, symbols, and emojis show correctly.
<meta name="viewport" content="width=device-width, initial-scale=1.0"> : Makes your site look good on phones and tablets.
<meta name="description" content="Website Description"> : Describes your page to Google and helps people find it.
<meta name="author" content="Your Name"> : Says who created the page.
<meta name="keywords" content="Website's Keywords"> : Adds a few words to help search engines understand your topic.
_____
This is my first post in this topic. I'll be focusing on the practical side more than the actual theory, really. You will just have some short bullet points for most of these posts. The first 10 posts would be fully HTML. I'll continue with CSS later. And by 20th post, we'll build the first website. So, I hope it will be helpful :)
If I keep a coding post spree for like 2 weeks, would anyone be interested? o-o
Thanks for the tag! :D
It was really fun :))
Tagging: @hannahxrosey @lucylernt @ashs-reverie @anna--studies @gajina @-anyone-who-wants -to-join (absolutely no pressure :))
starting a picrew chain bc i found one that has tons of options for outfits and such
here is the link
so here’s a biblically accurate atlas for you folks
fun fact i have this exact outfit ^_^
no pressure tags: @gently-decaying-flowers @tellme-o-muse @gayoticbeing @xgirlidiotx @trying-to-be-cool-abt-it @bassguitarinablackt-shirt @dandelions-fly-in-summer-skies @astraeasparrow @fakevariety @mack-anthology-mp3 @my-cages-were-mental and anyone else who’d like to!!
|| Isabelle || INFP-T || Study tips || Self improvement || Books ||
293 posts