top of page

What I learned

I've learned many things from Mrs. Carter. I've taught how to code, and learned about it. I already had prior knowledge of binary code. I learned HTML coding. Earlier in the year, I learned about computer parts and ethics knowledge.


Binary Code is a system of one's and zero's that represent on and off switches. It is a base two system.

2(power of 0) equals 1 

2(power of 1) equals 2
2(power of 2) equals 4
2(power of 3) equals 8

2(power of 4) equals 16

2(power of 5) equals 32
And so on...
111111111= 255
10101010=170
I'm sure you get the idea.


HTML has many aspects. you have to start out with 
<!doctypehtml>

<html>
<head>Website description</head>
<body>
<p>Body context and information</p>
<p>Body context and information continued</p>

</body>
</html>
This is the idea of HTML. There are also breaks, lists, italics, bold, background color changes, body color changes, and many more, but I don't want to get too much into that.
 

bottom of page