Daily Report
  • Day 1 - 22/8
  • Day 2 - 23/8
  • Day 3 - 24/8
  • Day 4 - 25/8
  • Day 5 - 26/8
  • Day 6 - 28/8
  • Day 7 - 29/8
  • Day 8 - 30/8
  • Day 9 - 4/9
  • Day 10 - 5/9
  • Day 11 - 6/9
  • Day 12 - 7/9
  • Day 13 - 8/9
  • Day 14 - 9/9
  • Day 15 - 11/9
  • Day 16 - 12/9
  • Day 17 - 14/9
  • Day 18 - 15/9
  • Day 19 - 18/9
  • Day 20 - 19/9
  • Day 21 - 20/9
  • Day 22 - 21/9
  • Day 23 - 22/9
  • Day 24 - 23/9
  • Day 25 - 25/9
  • Day 26 - 26/9
  • Day 27 - 27/9
  • Day 28 - 28/9
  • Day 29 - 29/9
  • Day 30 - 2/10
  • Day 31 - 3/10
  • Day 33 - 7/10
  • Day 32 - 4/10
  • Day 34 - 9/10
  • Day 35 - 10/10
  • Day 36 - 11/10
  • Day 37 - 16/10
  • Day 38 - 17/10
  • Day 39 - 18/10
  • Day 40 - 19/10
  • Day 41 - 20/10
  • Day 42 - 21/10
  • Day 43 - 23/10
  • Day 44 - 25/10
  • Day 45 - 26/10
  • Day 46 - 27/10
  • Day 47 - 30/10
  • Day 48 - 31/10
  • Day 49 - 1/11
  • Day 50 - 2/11
  • Day 51 - 3/11
  • Day 52 - 5/11
  • Day 53 - 6/11
  • Day 54 - 7/11
  • Day 55 - 8/11
  • Day 56 - 9/11
  • Day 57 - 10/11
  • Day 58 - 13/11
  • Day 59 - 14/11
  • Day 60 - 15/11
  • Day 61 - 16/11
  • Day 4/12
  • Day 6/12
  • Day 7/12
  • Day 8/12
  • Day 12/12
  • Day 13/12
  • Day 14/12
  • Day 15/12
  • Day 16/12
  • Day 18/12
  • Day 19/12
  • Day 20/12
  • Day 21/12
  • Day 25/12
  • Day 26/12
  • Day 27/12
  • Day 28/12
  • Day 29/12
  • Day 3/1
  • Day 4/1
  • Day 5/1
  • Day 8/1
  • Day 10/1
  • Day 11/1
  • Day 12/1
  • Day 13/1
  • Day 15/1
  • Day 16/1
  • Day 17/1
  • Day 18/1
  • Day 19/1
  • Day 23/1
  • Day 24/1
  • Day 27/1
  • Day 29/1
  • Day 30/1
  • Day 1/2
  • Day 2/2
  • Day 5/2
  • Day 6/2
  • Day 15/2
  • Day 16/2
  • Day 17/2
  • Day 19/2
  • Day 20/1
  • Day 21/2
  • Day 22/2
  • Day 23/2
  • Day 26/2
  • Day 27/2
  • Day 28/2
  • Day 29/2
  • Day 1/3
  • Day 4/3
  • Day 5/3
  • Day 6/3
  • Day 7/3
  • Day 8/3
  • Day 9/3
  • Day 11/3
Powered by GitBook
On this page

Day 6 - 28/8

  1. <center/>: set everything in it to the center of webpage

  2. <audio src="" controls/>: add audio; give user control rights;

  • + autoplay: auto play the audio on first loaded

  • + muted: the audio is muted on first loaded

  • + loop: to have the audio loop

  1. <video src="" type="video/webm"/>: display video; only works with .webm files for now

  2. <form enctype=""> : encode methods

  • application/x-www-form-urlencoded: default method; all data are encoded before submitting

  • multipart/form-data: used when type="file" included

  • text/plain: submitting data without encoding

  1. text-shadow: x y z color, a b c color; create shadow for text x (positive) pixel to the right, y pixel down, z pixel blur; a (negative) pixel to the left, b pixel up, c pixel blur

  2. box-shadow

  3. display: flow-root: used when an image floating among a border to keep it from floating out of the box

  4. overflow: : adjust content when it doesnt fit a border

  • visible: still overflow and visible

  • hidden: hide the overflow part, but still can get back the full content

  • clip: clip the overflow content; use overflow-clip-margin: ; to decide how much of the overflow part is allowed to be presented

  • scroll: present a scroll bar

  • auto: make the scroll bar visible when overflow and disappear when it's not

  1. display: :

  • block: present a block around its content with a set height and width; 2 blocks will display in 2 individual line

  • inline: present a block just surround the content even when set a new height and width; 2 consecutive inline can display in the same line

  • inline-block: like inline but can adjust the size of block

  • none: nothing display even the content

  1. visibility: :

  • hidden: the box and content will be invisible but still take up the space as much as it does show up

  1. position: :

  • relative: change the position of objects due to their original positions (ex +-100px from the left)

  • fixed: keep the position unchange compare to the screen; can use top bottom left right to adjust it (ex left: 100px; bottom 50px;

  • absolute: adjust the position relative to the previous block

  • sticky: adjust the position base on scroll position

  • static: set to default position

  1. pseudo class: add to selectors to modify the behavior of an element when in certain state: hover, active, visited

  2. pseudo elements:

  • ex::first-letter : adjust the first letter in text ex

  • ex::first-line : adjust the first line in paragraph ex

  • ex::selection : adjust the feedback when selecting some text or the whole paragraph ex

  • ex::before : add content:"" to the front of ex

  • ex::after

  • li::marker : change the default marker of a list

  1. pagination: devide web page to multiple pages and numbers given

  2. Create drop-down menu: a menu drop when click a button

  3. Icon : insert icon

  4. Create navigation bar

  5. Flex box

PreviousDay 5 - 26/8NextDay 7 - 29/8

Last updated 1 year ago