Skim How the Web Works
Skim Website Design and Process
Read the following sections of JavaScript Basics: Start at “What is JavaScript?”, read through “Comments” section.
into a server my data goes, and back to me a website comes
The browser “parses” HTML doc first which will read the attached <link>
and <script>
tags which leads the browser to begin parsing the JS and CSS files associated with those <link>
and <script>
tags.
Using Google Images, we can search for pictures we want under the ‘Creative Commons’ option.
String
vs a Number
in JavaScript?In JS, we create Strings
by entering the data with since quotes (‘’).
We create a
Variable
and why are they important in JavaScript?Read the beginning of Getting Started with HTML. Start from the beginning and read through section “Anatomy of an HTML document”.
An attribute is extra bits of data in an HTML element that aren’t part of the content. Examples would be class
and id
.
Describe the Anatomy of an HTML element.
<>
What is the Difference between <article>
and <section>
element tags?
The <article>
tag is for content that can make sense on its own.
The <section>
tag is for a grouping of content that have a singular function.
Both tags can have each other nested within the other, depending on the context.
A “typical” website includes these tags at minimum:
<html>
<head>
<meta>
<title>
<body>
The content of the <title>
element is used in search engines. We can also include keywords in the <meta>
element to further optimize search results.
<meta>
HTML tag used when specifying metadata?The meta tag can be used to store data about the data of the page, like the author of the page, or the charset, or a summary of what the page is about, or keywords for search engines.
How to start to design a Website.
The first step of designing a website is project ideation which means figuring out exactly what the website is supposed to do and accomplish, before coding begins.
What exactly do I want to accomplish?
Why should you use an <h1>
element over a <span>
element to display a top level heading?
What are the benefits of using semantic tags in our HTML?
Describe 2 things that require JavaScript in the Browser?
How can you add JavaScript to an HTML document?