View on GitHub

reading-notes

My CF seattle-201d64

Introductory HTML and JS.

Back to Home

We are asked to read the prescribed chapters and then choose a format from the list on our Read: 01 - Introductory HTML and JavaScript and create a reply in our Notes Repo.

Jon Duckett write about the basics of proper HTML, CSS, and JS strucute. They are three different structured languages that while working together to present information to an end user and send back data when needed are also three separate and specific languages.

HTML

HTML is the skeleton of the web page applications we will be building. It consists of elements defined by tags. The structure of an HTML document always begins with the declarative “Doctype” tag, letting the browser know what the document is: HTML. Inside this tag lives the HTML tag. The Head and the Body tags separate the information that will be rendered on to the page. HTML by itself will not add either responsiveness or styling to a page on its own but can link up to cascade style sheets (CSS) for presentation and JS scripts for functionality and responsiveness. HTML only pages would load very quickly, and rudimentarily “function” but would not be desirable and would not be considered adequate for a production worthy page.

CSS

CSS are the rules that create the presentation of a web page. This works in three ways:

JS

Java Script (js) is the programmatic layer of the web applications we make: while HTML buttons will still upload or function without js, js makes it so that web pages display and behave in defined and structural behaviors based on situations. Js makes it so that upload buttons only appear if certain conditions are met, or present submenus if conditions are reached to render them to the end user. Js makes it so that the internet is as interactive and specialized as the computer programmer wants it to be.

Back to Home