reading-notes

Class 01 Reading Assignment

Getting Started

  1. HTTP, What does that mean to me? A defined language for my PC To access webpages I can see

  2. HTML parsed first, browser then recognizes any and

  3. You can use google images, then click on tools, and check Creative Commons Licenses.

  4. String = ‘abcdefg’ Number = 5 A string will be wrapped in “” or ‘’ whereas a number will not be.

  5. Variables are containers that store values (data types). Variables are necessary, and if the values could not change then you wouldn’t be able to do anything dynamic.

Intro to HTML

  1. An HTML attribute contains extra info about the element that won’t appear in the content. It should have a space between it and the element name, the attribute name, followed by an equal sign, an attribute value wrapped with opening and closing quote marks.

  2. Anatomy of HTML element: Opening Tag, Content, Closing Tag.

  3. Difference between article and section element tags: <article> encloses a block of related content that makes sense on its own without the rest of the page. A <section> is similar, but is more for grouping together a single part of the page that constitutes one single piece of functionality, or a theme. You can break up articles into different sections and vice versa.

  4. Elements of a typical website:
    • header
    • navigation bar
    • main content
    • sidebar
    • footer
  5. The description meta and title element content are used in the search result.

  6. Metadata can be used to set the language of a page, add author information, and a description of the page itself.

Resources

How The Web Works

Client –> Request –> Server – | Client <– Response <–

Clients are web user’s internet connected devices and web accessing software on those devices. Servers are computers that store webpages, sites, or applications. When a client wants to access a webpage, a copy of the webpage is downloaded from the server onto the client machine to be displayed on the user’s web browser.

Additional Basics:

The order in which component files are parsed:

What Will Your Website Look Like?

Plan First!

You can begin with a hand drawn sketch or wireframe. Then you can choose which assets you would like to appear on your page, such as text, font, theme color, and images.

JavaScript Basics

JavaScript = programming language that can add interactivity to a website.

How does JavaScript work? Some core features of JavaScript: