diff --git a/computer-science-blog/css/main.css b/computer-science-blog/css/main.css index 6868a58..ac4def8 100644 --- a/computer-science-blog/css/main.css +++ b/computer-science-blog/css/main.css @@ -1,6 +1,10 @@ /* Reading School 2018, CSS*/ .carousel-inner { height: 250px; + border-radius: 4px; + overflow: hidden auto; + margin-bottom: 15px; + background: rgba(10,10,10,0.2); } .carousel-inner .item { height: 100%; @@ -28,6 +32,11 @@ min-height: 32px; } +/* revert changes made by Bootstrap */ +p { + margin: 0; +} + /* add side margins depending on screen size */ #main-content { text-align: left; diff --git a/computer-science-blog/pages/cookies.html b/computer-science-blog/pages/cookies.html index b626b58..988bbcb 100644 --- a/computer-science-blog/pages/cookies.html +++ b/computer-science-blog/pages/cookies.html @@ -1,19 +1,5 @@ - - - - - - - - - - - - - - -

Cookies

- Cookies are not, unfortunately, the treats made of dough. They are, in fact, small text files, usually one-line long, which store relevant information about websites visited by a computer. This might include a selected language, or ad preferences. Some websites even use cookies to store passwords that are set to ‘remember’. Thus cookies need a lot of security and the id of each one must be unfathomably difficult to find without permission so that hackers cannot find someone’s cookie. Cookies are stored on the computer, as opposed to the website. Whenever you visit a browser, the browser accesses the relevant cookie and your information is there. Also, whenever a website uses cookies, they must announce the fact and give an option to refuse them, for data privacy/security reasons. - - +

Cookies

+

+ Cookies are not, unfortunately, the treats made of dough. They are, in fact, small text files, usually one-line long, which store relevant information about websites visited by a computer. This might include a selected language, or ad preferences. Some websites even use cookies to store passwords that are set to ‘remember’. Thus cookies need a lot of security and the id of each one must be unfathomably difficult to find without permission so that hackers cannot find someone’s cookie. Cookies are stored on the computer, as opposed to the website. Whenever you visit a browser, the browser accesses the relevant cookie and your information is there. Also, whenever a website uses cookies, they must announce the fact and give an option to refuse them, for data privacy/security reasons. +

diff --git a/computer-science-blog/pages/http.html b/computer-science-blog/pages/http.html index 57b0572..de39de7 100644 --- a/computer-science-blog/pages/http.html +++ b/computer-science-blog/pages/http.html @@ -1,19 +1,5 @@ - - - - - - - - - - - - - - -

HTTP

- HTTP is Hypertext Transfer (or Transport) Protocol, the underlying data transfer protocol used on the World Wide Web. It defines what actions web servers and browsers should take in response to commands. For example, when a URL is opened or hyperlink (which is a URL) clicked, your web browser actually sends an HTTP request to the server which hosts the website you're trying to access, in order to fetch it and display it on your screen. Obviously, for each web server to understand these requests, the server and request must both follow this protocol. - - +

HTTP

+

+ HTTP is Hypertext Transfer (or Transport) Protocol, the underlying data transfer protocol used on the World Wide Web. It defines what actions web servers and browsers should take in response to commands. For example, when a URL is opened or hyperlink (which is a URL) clicked, your web browser actually sends an HTTP request to the server which hosts the website you're trying to access, in order to fetch it and display it on your screen. Obviously, for each web server to understand these requests, the server and request must both follow this protocol. +

diff --git a/computer-science-blog/pages/https.html b/computer-science-blog/pages/https.html index ae146a1..c638df5 100644 --- a/computer-science-blog/pages/https.html +++ b/computer-science-blog/pages/https.html @@ -1,19 +1,5 @@ - - - - - - - - - - - - - - -

HTTPS

- HTTPS is the secure hypertext transfer protocol, which means that it is a variation on the HTTP protocol - except it uses a secure socket layer (SSL), which is an encryption protocol invoked by an HTTPS request. SSL is essentially the usage of ‘digital passports’, and it functions by ‘hopping onto’ TCP protocols. It does not resend ‘lost’ packets or ‘miscommunicated' data, because this increases security. - - +

HTTPS

+

+ HTTPS is the secure hypertext transfer protocol, which means that it is a variation on the HTTP protocol - except it uses a secure socket layer (SSL), which is an encryption protocol invoked by an HTTPS request. SSL is essentially the usage of ‘digital passports’, and it functions by ‘hopping onto’ TCP protocols. It does not resend ‘lost’ packets or ‘miscommunicated' data, because this increases security. +