😃JOURNAL😃

The basics

  • How to create htmls and open them in my browser

  • How to create divs and style them in the head

  • How to create a link with a tag and href

  • How to position things and make them relative or fixed
  • 9/30/24

  • Open terminal and find folder by typing "cd ./desktop/BigJustice123.github.io
    To make changes "git add ."
    Then to commit changes: git commit -m " "
    Finally, to connect it: "git push"
  • 10/17/24

  • How to make animations! Use @keyframes to make the animation with attributes in the 0%, 50%, and 100%.

    10/21/24

  • Java script functions, like console.log which send an alert.

    11/18/24

  • We made clocks which use Java Script functions to make a div every second with function make___(){}
    Then put let ___ = document.createElement("div")
    Make sure to camel case!
    Use the setInterval function to run it for every second.

    11/20/24

  • I made my "clock" on the home page, and then turned it into an array. Then, I was able to remove the class in the mouse out function so the images would disappear.

    11/25/24

  • Java script functions cheat sheet
    console.log()
    addEventListener()
    ___.play()
    ___.pause()
    alert()
    setInterval()
    When making your own function, remember to first define it, and run it at the end using ().

    12/16/24

  • We learned about if else statements. They are similar to functions and you put the input into the parenthesis and the output into the brackets. You can put them into add event listeners.