SlideShare a Scribd company logo
1 of 74
Interactive News Editing and
ProductionThursday, Jan. 8
• Talk about ourselves and our focus
• Class logistics
• How the web works
• HTML I
• Narrative storytelling
• First data visualization exercise
• Homework
Today
• Your name
• Hometown
• Undergraduate degree
• Personal history
• Previous employment
• Professional passion(s)
• Most want to learn in this class
Introduce yourself
Class site canvas (http://bit.ly/1AuuRsH)
Class structure:
• 3-hour class with a 50-minute optional lab
• Mostly hands-on workshops and focused
assignments
• No final project
Grading: Homework 40%, workshops 40%,
engagement 20%
Logistics
• Plain text editor like Textwrangler (Macs) or Notepad++
(PCs)
• Newest versions of Chrome and Firefox w/Firebug
• Photoshop or other photo editing software
• Non-NU Google account connected with Google Fusion
Tables
• Twitter account
What you need
• “HTML & CSS: Design and Build
Websites” by Jon Duckett
• “Don’t Make Me Think Revisited”
by Steve Krug
Officially Friday from around 4:30 p.m. in the
Loop campus. Doesn’t hurt emailing me as
well.
kurtgessler@gmail.com
kurt.gessler@northwestern.edu
kgessler@tribune.com
Office hours
“The purpose of the schools [is] to, as one
teacher argues, ‘Teach carpentry, not hammer.’
We need to teach the whys and ways of the
world. Tools come and tools go. Teaching our
children tools limits their knowledge to these
tools and hence limits their futures.”
- Michael Bellino, an electrical engineer at
Boston University's Center for Space Physics
‘Teach carpentry, not hammer’
Journalism 451 is a digital laboratory designed
to arm you with the perspective and essential
skills to be at the epicenter of a digital
newsroom, assessing, sometimes swiftly, what
needs to be done and how and when to do it.
It’s more than just tools, because tools change
and evolve. You need to know why we use
them.
And it’s real.
What this class is about
• Fundamental knowledge of how the web works
• HTML5, CSS and responsive web design
• CMS basics
• Digital storytelling and data visualization tools
• Breaking news writing, content curation and writing from
multiple sources
• Headline writing
• SEO and identifying trends
• Analytics and audience analysis
• Social media
Core concepts
Deep dive into web development
A long hand-holding-type project you could
never replicate away from the class
Long-form lamentation of journalism or ivory
tower navel-gazing at NYT Innovation Report
What this class isn’t about
How the web works
The first ARPANET link
was established
between UCLA and the
Stanford Research
Institute on Oct. 29,
1969 …
But that’s not what
we’re talking about. At
all.
How the web works
We want to answer the question: “What’s your
browser doing when it displays a page?”
Exploration of that question has many
pragmatic implications as you work on the web.
How the web works
• You enter a URL into your browser, such as
Chrome or Firefox.
• Vocab: URL = Uniform Resource Locator
• That URL gets parsed by your browser in this
format: <protocol>://<server>/<path/file>
http://www.northwestern.edu/admissions/graduate.ht
ml
Finding your web page
• The protocol defines the how computers will
communicate. In this example, it’s “http” or
Hypertext Transfer Protocol.
• The server tells your computer the name of
the computer serving the requested page.
• The path indicates which page you’re
interested in accessing on the requested
website.
Finding your web page
Two important takeways: case sensitivity and
paths
Are these paths the same?
www.redeye.com/News/Story.html
www.redeye.com/news/story.html
No. Web files and directories are case
sensitive.
Finding your web page
In the following example, what does
“admissions” represent in the file structure?
http://www.northwestern.edu/admissions/graduate.ht
ml
A folder. And graduate.html is an html
document.
Finding your web page
• Now that your browser has chopped up the
URL, it can get down to work, which is
establishing a communication session with
the requested server.
• Vocab: These computers are called “web
servers”, because they respond to (i.e. serve)
requests from “clients,” like your browser.
Finding your web page
• Your browser now uses the internet’s phone
book: the Domain Name System (DNS). It’s
how clients, like your browser, convert a
server name into its corresponding IP
address.
• Want to look up a name in DNS? Visit
http://www.webmaster-toolkit.com/dns-
query.shtml
Finding your web page
• When you type in chicagotribune.com that
resolves to 184.26.143.177
• These numbers are called IP (Internet
Protocol) addresses. They are generally 10
or 12 digits.
• Want to find your IP address?
http://whatismyipaddress.com
Finding your web page
Next, your computer sends something called an
HTTP (Hypertext Transfer Protocol) request.
One of two things happen:
• If it can find the page you requested, it
returns it in an HTTP response
• If the server can’t find the page you
requested, it returns a “404 page not found”
response
Making a connection
• If it a successful connection is established,
the actual content starts to be transferred and
presented by your browser
• The format it follows? HTML (HyperText
Markup Language)
• That information may be in one place (on one
server). It, most likely, is not.
Making a connection
A web page is controlled by three parts:
• HTML controls the structure of a web page
• CSS controls the presentation
• Javascript controls its behavior (drag and
drop, swipe, dynamic style changes, button
functionality)
Web page structure
• How does a browser render a web page?
• It chops up elements to form a Document
Object Model (DOM) tree.
Read more? http://www.html5rocks.com/en/tutorials/internals/howbrowserswork/#Render_tree_construction
Web page structure
• OK, you’ve typed a URL, it’s been DNS
resolved to an IP address. We’ve made a
successful connection
• Now, data (web documents, images) are
transferred to your web cache
• A web cache is a mechanism for the
temporary storage (caching) of web
documents to reduce bandwidth usage,
server load and lag
Data caching
Why are some webpages slow to load while
others are speedy?
• Too many requests/high traffic
• Too many off-server requests
• HTML/CSS errors
• File sizes, especially images
Web page lag
Manage your images properly before you FTP
them to your image or web server.
Web page lag
• Always save for
web and
devices
• Size them
appropriately
(never enlarge)
• You told your browser you wanted to visit a
particular URL
• Your browser parsed the URL
• Your browser used the DNS system to
convert the user-friendly name into an IP
address
• You connected to the IP address
• Your browser sent the server an HTTP
request asking for a copy of the HTML
document
Anatomy of a page load
• The server found the requested HTML
document and returned it to your browser via
an HTTP response
• Your browser interpreted and displayed the
HTML document, gathering all needed
resources and storing them in your web
cache
Read more: http://www.stanford.edu/class/msande91si/www-
spr04/readings/week1/InternetWhitepaper.htm
Anatomy of a page load
• View source
• Chrome Inspect Element
• Firebug app for Firefox
A few tips and tools
Takeaways
• Know what a URL means, from the IP
address to the path
• The internet is case sensitive
• Know the parts of the web page
• Know the importance of file sizes
• Remember your debugging tips
HTML I
• HTML is a language for describing web
pages. It houses and describes content within
sets of tags. It stands for HyperText Markup
Language.
• HTML is not a programming language. It is a
markup language.
• We’ll be using HTML5 with some XHTML
standards.
What is HTML?
• HTML controls the structure of a web page.
• CSS controls the presentation.
• Javascript controls its behavior.
Good, clean HTML contains no style
information.
What does HTML do?
• HTML uses tags in documents to describe
the structure of pages.
• Most tags will involve both an opening and a
closing tag.
• Each tag tells the browser something about
the data within each container.
How does it work?
• HTML is delivered as a “documents.” These
are then parsed, which turns them into the
Document Object Model (DOM) within a web
browser.
• As they are parsed, “elements” are generated
from each “tag.”
• On your HTML document they are “tags;” on
your website, they are “elements.” Move
along.
Super perfectionist alert …
<html>Start and end of an HTML document</html>
<head>Metadata, style, script</head>
<body>Main content area</body>
<p>This is a paragraph of normal text</p>
<h1>This is the most important headline</h1>
<h6>This is the least important headline</h6>
<strong>This is bold text</strong>
<em>This is italicized text</em>
<blockquote>Sets this text apart</blockquote>
Basic HTML5 tags
<a>Links</a>
<span>Unstyled tag for inline elements<span>
<figure><figcaption> HTML5 image and caption containers
<img /> Image call
<ul><ol><li> List tags and items
<aside><header><footer><hgroup><section><nav><article
> HTML semantic containers
<div>Unstyled container for block-level elements</div>
<hr /> Horizontal rule
<br /> Line break
More HTML5 tags
Empty tags are “elements” that contain no
content, such as <hr> or <br>, and are usually
styled <br /> or <hr /> <img /> under XHTML
standards.
<img src=“http://coolpic.jpg” alt=“cool pic” />
Empty tags
DON’T USE ALL CAPS FOR TAGS.
It works, but it’s poor (deprecated) form.
In fact, lots of bad things work fine, but don’t do
them.
Speaking HTML
• Opening tags contain attributes.
• They give more information about how to
render the information contained in the tag.
<a href=“http://fakelink.edu”></a>
HTML attributes
HTML5 is a semantic system, meaning the tags
tell browsers how to interpret them. Not styles,
per se, but presentation clues. This helps with:
• SEO, page maintenance, accessibility
Again, though, styling is left to CSS not HTML
Markup with meaning
<strong> not <b>
<em> not <i>
<blockquote>
<address>
<cite>
Browsers will often apply a style as they render
these. But you can override.
Markup with meaning
Good HTML structure will allow you to apply
styles to relative positions.
<article>
<h1>header</h1>
<p>CTA ghost trains are <em>very</em>scary</p>
</article>
<article> is the parent of <h1> and <p>. <h1>
and <p> are children from <article>. <p> is the
parent of <em>
Parents and children
It’s valid structure. But when you nest tags, you
close the tags in the opposite order that you
opened them.
Yes: <strong>This is <em>right</em></strong>
No: <strong>This is <em>right</strong></em>
Nesting tags
<!DOCTYPE html>
<html>
<head>
META/STYLE/SCRIPT INFO
</head>
<body>
CONTENT
</body>
</html>
Simple HTML5 page structure
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf‐8" />
<title>TITLE GOES
HERE</title> <link
rel="stylesheet” type="text/css"
href="style.css" />
</head>
<body>CONTENT GOES HERE
</body>
</html>
HTML-to-English translation
Tells browser "this is an HTML
file”
Let’s converse in English
Starts metadata
Translate characters this way
Appears in your browser tab
Get presentation info here
I’m done with the metadata
Start main content area
End of the main content area
“All done with this page”
1. Open the file lesson1.html with your text
editor
2. Make the changes detailed in the
commented out section at the top of the file: <!-
- COMMENTS -->
3. Save
4. Open your file with Safari/Firefox/Chrome to
see changes
Lesson I
There are three types of lists: ordered lists
<ol>, unordered lists <ul>, definition lists <dl>.
• Ordered lists are used for sequential lists
like instructions for assembling a box
• Unordered lists used bullet points rather
than characters
• Definition lists really aren’t used much
Lists
Note: You can change numbering schema.
<h2>How to create web pages</h2>
<ol>
<li>Write markup</li>
<li>Save file</li>
<li>Preview file in browser</li>
</ol>
Ordered lists
Note: You can change bulleting schema.
<h2>Needs for web page building</h2>
<ul>
<li>Text editor</li>
<li>FTP client</li>
<li>Photoshop</li>
<li>Domain</li>
</ul>
Unordered lists
<dl>
<dt>HTML</dt>
<dd>HTML is a language for describing web
pages.</dd>
</dl>
Definition lists
1. Open the file lesson2.html with your text
editor
2. Format the recipe (with its two lists) as
appropriate
3. Save
4. Open your file with Safari/Firefox/Chrome to
see changes
Lesson II
Narrative storytelling
• Many stories that have a strong or entirely
necessary geographic component
• Visualized data often reveals the real story
• Video and audio convey mood and setting
• Documents show authenticity
Words and photos are not enough in 2015.
Why bother?
‘The reward of
data
visualization
comes from
discovery’ Jer Thorp, ex-New York
Times
‘I’d rather have
a Snow Fall
builder than a
Snow Fall.’
Quartz editor Kevin Delaney
Geography of jobs
Spot the Ball
Ted Ligety
Moore, Okla. tornado
Boston Marathon bombing
Harsh Treatment graphic novels
Regional dialect
Everyone has a name
Cardstacks
Effective storytelling
Google Fusion Tables I
Create a Google Fusion document based on the
the file chicagospeedcameras.csv.
This is a simple file with predetermined geopoints
(lat/long) and marker_icons.
We’ll import, customize the info window and
marker icons, and publish.
Exploration I: GFT geopoints
Select “Tools/Change info window Layout”
(“Configure info window” in classic).
Options: Automatic (checkbox based on your
columns) or Custom (based on column plus open
(inline) HTML)
Customizing map info windows
Select “Tools/Change map styles”
Options: Fixed, Column, Buckets
For fixed, you have 10 icons:
https://support.google.com/fusiontables/answer/2679986?hl=en&ref_topic=2575652
You can use custom icons as well:
https://developers.google.com/maps/tutorials/customizing/custom-markers
Customizing marker icons
Select Publish, Change visibility/Change/Public on
the web/Done.
Re-select Publish, and specific your embed width
and format (iframe embed or HTML + JS)
Publishing
Create a Google Fusion document based on the
the file bibgourmand2014.xlsx.
This file only contains addresses not geopoints.
We’ll import how Google manages this process
and what adjustments we need to make.
Exploration II: addresses
To select which column is plotted, toggle over to
Map of Area, click on “Map of Area” and select
“Select Location” and the column desired.
Exploration II: addresses
• Create a map illustrating what areas got the
most snow from the recent winter storm.
• Follow one of two paths listed at the top of
snowfall-template.html in the mapping folder,
using the files town-coords.xlsx, snowfall-
template.html and snowfall-20150106.xlsx or
nws-rawdata.docx.
Lesson I: Snowfall map
• Find a visual story to share and explain in a few
grafs why it worked. You might be asked to show
and tell.
• GFT homework: snowfall map
• HTML homework: Read Duckett Chapters 1-3
• Good reading: “The News Mixtape”
(http://bit.ly/1tPQUIl)
• Good reading: “Platforms Not One-Offs”
(http://bit.ly/1tPQWQv)
Week 1 homework
• Headlines
• HTML II
• Google Fusion Tables II (polygons)
• Likely WordPress
Next week

More Related Content

What's hot

Fundamentals of web_design_v2
Fundamentals of web_design_v2Fundamentals of web_design_v2
Fundamentals of web_design_v2hussain534
 
Electronic Resources for New Staff @ UConn
Electronic Resources for New Staff @ UConnElectronic Resources for New Staff @ UConn
Electronic Resources for New Staff @ UConnerlstephanie
 
Introduction to Web Design for Literary Theorists I: Introduction to HTML (v....
Introduction to Web Design for Literary Theorists I: Introduction to HTML (v....Introduction to Web Design for Literary Theorists I: Introduction to HTML (v....
Introduction to Web Design for Literary Theorists I: Introduction to HTML (v....Patrick Mooney
 
Lecture-3: Introduction to html - Basic Structure & Block Building
Lecture-3: Introduction to html - Basic Structure & Block BuildingLecture-3: Introduction to html - Basic Structure & Block Building
Lecture-3: Introduction to html - Basic Structure & Block BuildingMubashir Ali
 
Code & Design Your First Website (Downtown Los Angeles)
Code & Design Your First Website (Downtown Los Angeles)Code & Design Your First Website (Downtown Los Angeles)
Code & Design Your First Website (Downtown Los Angeles)Thinkful
 
From 0 to 100 with Content types
From 0 to 100 with Content typesFrom 0 to 100 with Content types
From 0 to 100 with Content typesJoanne Klein
 
Secrets to free_web_hosting
Secrets to free_web_hostingSecrets to free_web_hosting
Secrets to free_web_hostingFarazSohail2
 
Secrets to Free Web Hosting
Secrets to Free Web HostingSecrets to Free Web Hosting
Secrets to Free Web Hostinghildamendez6
 
HTML Start Up - Introduction to HTML
HTML Start Up - Introduction to HTMLHTML Start Up - Introduction to HTML
HTML Start Up - Introduction to HTMLGrayzon Gonzales, LPT
 
Week 5 - Interactive News Editing and Producing
Week 5 - Interactive News Editing and ProducingWeek 5 - Interactive News Editing and Producing
Week 5 - Interactive News Editing and Producingkurtgessler
 
Project folder-structure-
Project folder-structure-Project folder-structure-
Project folder-structure-Daniel Downs
 
Secrets to free_web_hosting
Secrets to free_web_hostingSecrets to free_web_hosting
Secrets to free_web_hostingImran Ahmad
 
building websites at NAU
building websites at NAUbuilding websites at NAU
building websites at NAUJonathan Smart
 
How to build your own Delve: combining machine learning, big data and SharePoint
How to build your own Delve: combining machine learning, big data and SharePointHow to build your own Delve: combining machine learning, big data and SharePoint
How to build your own Delve: combining machine learning, big data and SharePointJoris Poelmans
 
Lotusphere 2012 Speedgeeking - jQuery & Domino, a RAD Combination
Lotusphere 2012 Speedgeeking - jQuery & Domino, a RAD CombinationLotusphere 2012 Speedgeeking - jQuery & Domino, a RAD Combination
Lotusphere 2012 Speedgeeking - jQuery & Domino, a RAD CombinationSean Burgess
 
SEF2013 - A jQuery Primer for SharePoint
SEF2013 - A jQuery Primer for SharePointSEF2013 - A jQuery Primer for SharePoint
SEF2013 - A jQuery Primer for SharePointMarc D Anderson
 
The road to professional web development
The road to professional web developmentThe road to professional web development
The road to professional web developmentChristian Heilmann
 

What's hot (20)

Geek basics
Geek basicsGeek basics
Geek basics
 
Fundamentals of web_design_v2
Fundamentals of web_design_v2Fundamentals of web_design_v2
Fundamentals of web_design_v2
 
Electronic Resources for New Staff @ UConn
Electronic Resources for New Staff @ UConnElectronic Resources for New Staff @ UConn
Electronic Resources for New Staff @ UConn
 
Introduction to Web Design for Literary Theorists I: Introduction to HTML (v....
Introduction to Web Design for Literary Theorists I: Introduction to HTML (v....Introduction to Web Design for Literary Theorists I: Introduction to HTML (v....
Introduction to Web Design for Literary Theorists I: Introduction to HTML (v....
 
Lecture-3: Introduction to html - Basic Structure & Block Building
Lecture-3: Introduction to html - Basic Structure & Block BuildingLecture-3: Introduction to html - Basic Structure & Block Building
Lecture-3: Introduction to html - Basic Structure & Block Building
 
Code & Design Your First Website (Downtown Los Angeles)
Code & Design Your First Website (Downtown Los Angeles)Code & Design Your First Website (Downtown Los Angeles)
Code & Design Your First Website (Downtown Los Angeles)
 
From 0 to 100 with Content types
From 0 to 100 with Content typesFrom 0 to 100 with Content types
From 0 to 100 with Content types
 
Secrets to free_web_hosting
Secrets to free_web_hostingSecrets to free_web_hosting
Secrets to free_web_hosting
 
Secrets to Free Web Hosting
Secrets to Free Web HostingSecrets to Free Web Hosting
Secrets to Free Web Hosting
 
HTML Start Up - Introduction to HTML
HTML Start Up - Introduction to HTMLHTML Start Up - Introduction to HTML
HTML Start Up - Introduction to HTML
 
Week 5 - Interactive News Editing and Producing
Week 5 - Interactive News Editing and ProducingWeek 5 - Interactive News Editing and Producing
Week 5 - Interactive News Editing and Producing
 
Project folder-structure-
Project folder-structure-Project folder-structure-
Project folder-structure-
 
Secrets to free_web_hosting
Secrets to free_web_hostingSecrets to free_web_hosting
Secrets to free_web_hosting
 
building websites at NAU
building websites at NAUbuilding websites at NAU
building websites at NAU
 
Introduction to web_design_cs_final_ason
Introduction to web_design_cs_final_asonIntroduction to web_design_cs_final_ason
Introduction to web_design_cs_final_ason
 
How to build your own Delve: combining machine learning, big data and SharePoint
How to build your own Delve: combining machine learning, big data and SharePointHow to build your own Delve: combining machine learning, big data and SharePoint
How to build your own Delve: combining machine learning, big data and SharePoint
 
Raju html
Raju htmlRaju html
Raju html
 
Lotusphere 2012 Speedgeeking - jQuery & Domino, a RAD Combination
Lotusphere 2012 Speedgeeking - jQuery & Domino, a RAD CombinationLotusphere 2012 Speedgeeking - jQuery & Domino, a RAD Combination
Lotusphere 2012 Speedgeeking - jQuery & Domino, a RAD Combination
 
SEF2013 - A jQuery Primer for SharePoint
SEF2013 - A jQuery Primer for SharePointSEF2013 - A jQuery Primer for SharePoint
SEF2013 - A jQuery Primer for SharePoint
 
The road to professional web development
The road to professional web developmentThe road to professional web development
The road to professional web development
 

Similar to Week 1 - Interactive News Editing and Producing

Drupal is not your Website
Drupal is not your Website Drupal is not your Website
Drupal is not your Website Phase2
 
Module 5 and 6
Module 5 and 6Module 5 and 6
Module 5 and 6Mitali Chugh
 
Drupal Is Not Your Web Site
Drupal Is Not Your Web SiteDrupal Is Not Your Web Site
Drupal Is Not Your Web SitePhase2
 
Wp 3hr-course
Wp 3hr-courseWp 3hr-course
Wp 3hr-courseRich Webster
 
Optimization of modern web applications
Optimization of modern web applicationsOptimization of modern web applications
Optimization of modern web applicationsEugene Lazutkin
 
Web Information Network Extraction and Analysis
Web Information Network Extraction and AnalysisWeb Information Network Extraction and Analysis
Web Information Network Extraction and AnalysisTim Weninger
 
WEB TECHNOLOGY:Web Essentials and Markup Language HTML
WEB TECHNOLOGY:Web Essentials and Markup Language HTMLWEB TECHNOLOGY:Web Essentials and Markup Language HTML
WEB TECHNOLOGY:Web Essentials and Markup Language HTMLsmitawagh14
 
Code & Design your first website 4/18
Code & Design your first website 4/18Code & Design your first website 4/18
Code & Design your first website 4/18TJ Stalcup
 
Code &amp; design your first website (3:16)
Code &amp; design your first website (3:16)Code &amp; design your first website (3:16)
Code &amp; design your first website (3:16)Thinkful
 
Eba ppt rajesh
Eba ppt rajeshEba ppt rajesh
Eba ppt rajeshRajeshP153
 
CMWP, the technical lecture
CMWP, the technical lectureCMWP, the technical lecture
CMWP, the technical lectureJenny Weight
 
Popping the Hood: How to Create Custom SharePoint Branding by Randy Drisgill ...
Popping the Hood: How to Create Custom SharePoint Branding by Randy Drisgill ...Popping the Hood: How to Create Custom SharePoint Branding by Randy Drisgill ...
Popping the Hood: How to Create Custom SharePoint Branding by Randy Drisgill ...SPTechCon
 
Castro Chapter 2
Castro Chapter 2Castro Chapter 2
Castro Chapter 2Jeff Byrnes
 
Castro Chapter 2
Castro Chapter 2Castro Chapter 2
Castro Chapter 2Jeff Byrnes
 

Similar to Week 1 - Interactive News Editing and Producing (20)

Unit 01 (1).pdf
Unit 01 (1).pdfUnit 01 (1).pdf
Unit 01 (1).pdf
 
Drupal is not your Website
Drupal is not your Website Drupal is not your Website
Drupal is not your Website
 
Module 3
Module 3Module 3
Module 3
 
Module 5 and 6
Module 5 and 6Module 5 and 6
Module 5 and 6
 
Drupal Is Not Your Web Site
Drupal Is Not Your Web SiteDrupal Is Not Your Web Site
Drupal Is Not Your Web Site
 
Wp 3hr-course
Wp 3hr-courseWp 3hr-course
Wp 3hr-course
 
Optimization of modern web applications
Optimization of modern web applicationsOptimization of modern web applications
Optimization of modern web applications
 
web development process WT
web development process WTweb development process WT
web development process WT
 
Wt unit 1 ppts web development process
Wt unit 1 ppts web development processWt unit 1 ppts web development process
Wt unit 1 ppts web development process
 
Web Information Network Extraction and Analysis
Web Information Network Extraction and AnalysisWeb Information Network Extraction and Analysis
Web Information Network Extraction and Analysis
 
Lecture7
Lecture7Lecture7
Lecture7
 
WEB TECHNOLOGY:Web Essentials and Markup Language HTML
WEB TECHNOLOGY:Web Essentials and Markup Language HTMLWEB TECHNOLOGY:Web Essentials and Markup Language HTML
WEB TECHNOLOGY:Web Essentials and Markup Language HTML
 
Web+html
Web+htmlWeb+html
Web+html
 
Code & Design your first website 4/18
Code & Design your first website 4/18Code & Design your first website 4/18
Code & Design your first website 4/18
 
Code &amp; design your first website (3:16)
Code &amp; design your first website (3:16)Code &amp; design your first website (3:16)
Code &amp; design your first website (3:16)
 
Eba ppt rajesh
Eba ppt rajeshEba ppt rajesh
Eba ppt rajesh
 
CMWP, the technical lecture
CMWP, the technical lectureCMWP, the technical lecture
CMWP, the technical lecture
 
Popping the Hood: How to Create Custom SharePoint Branding by Randy Drisgill ...
Popping the Hood: How to Create Custom SharePoint Branding by Randy Drisgill ...Popping the Hood: How to Create Custom SharePoint Branding by Randy Drisgill ...
Popping the Hood: How to Create Custom SharePoint Branding by Randy Drisgill ...
 
Castro Chapter 2
Castro Chapter 2Castro Chapter 2
Castro Chapter 2
 
Castro Chapter 2
Castro Chapter 2Castro Chapter 2
Castro Chapter 2
 

More from kurtgessler

Week 9 - Interactive News Editing and Producing
Week 9 - Interactive News Editing and ProducingWeek 9 - Interactive News Editing and Producing
Week 9 - Interactive News Editing and Producingkurtgessler
 
Week 8 - Interactive News Editing and Producing
Week 8 - Interactive News Editing and ProducingWeek 8 - Interactive News Editing and Producing
Week 8 - Interactive News Editing and Producingkurtgessler
 
Week 7 - Interactive News Editing and Producing
Week 7 - Interactive News Editing and ProducingWeek 7 - Interactive News Editing and Producing
Week 7 - Interactive News Editing and Producingkurtgessler
 
Week 6 - Interactive News Editing and Producing
Week 6 - Interactive News Editing and ProducingWeek 6 - Interactive News Editing and Producing
Week 6 - Interactive News Editing and Producingkurtgessler
 
Week 4 - Interactive News Editing and Producing
Week 4 - Interactive News Editing and ProducingWeek 4 - Interactive News Editing and Producing
Week 4 - Interactive News Editing and Producingkurtgessler
 
Week 3 - Interactive News Editing and Producing
Week 3 - Interactive News Editing and ProducingWeek 3 - Interactive News Editing and Producing
Week 3 - Interactive News Editing and Producingkurtgessler
 
Week 2 - Interactive News Editing and Producing
Week 2 - Interactive News Editing and ProducingWeek 2 - Interactive News Editing and Producing
Week 2 - Interactive News Editing and Producingkurtgessler
 

More from kurtgessler (7)

Week 9 - Interactive News Editing and Producing
Week 9 - Interactive News Editing and ProducingWeek 9 - Interactive News Editing and Producing
Week 9 - Interactive News Editing and Producing
 
Week 8 - Interactive News Editing and Producing
Week 8 - Interactive News Editing and ProducingWeek 8 - Interactive News Editing and Producing
Week 8 - Interactive News Editing and Producing
 
Week 7 - Interactive News Editing and Producing
Week 7 - Interactive News Editing and ProducingWeek 7 - Interactive News Editing and Producing
Week 7 - Interactive News Editing and Producing
 
Week 6 - Interactive News Editing and Producing
Week 6 - Interactive News Editing and ProducingWeek 6 - Interactive News Editing and Producing
Week 6 - Interactive News Editing and Producing
 
Week 4 - Interactive News Editing and Producing
Week 4 - Interactive News Editing and ProducingWeek 4 - Interactive News Editing and Producing
Week 4 - Interactive News Editing and Producing
 
Week 3 - Interactive News Editing and Producing
Week 3 - Interactive News Editing and ProducingWeek 3 - Interactive News Editing and Producing
Week 3 - Interactive News Editing and Producing
 
Week 2 - Interactive News Editing and Producing
Week 2 - Interactive News Editing and ProducingWeek 2 - Interactive News Editing and Producing
Week 2 - Interactive News Editing and Producing
 

Recently uploaded

Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts serviceChennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts servicesonalikaur4
 
Russian Call girl in Ajman +971563133746 Ajman Call girl Service
Russian Call girl in Ajman +971563133746 Ajman Call girl ServiceRussian Call girl in Ajman +971563133746 Ajman Call girl Service
Russian Call girl in Ajman +971563133746 Ajman Call girl Servicegwenoracqe6
 
VIP Kolkata Call Girl Salt Lake 👉 8250192130 Available With Room
VIP Kolkata Call Girl Salt Lake 👉 8250192130  Available With RoomVIP Kolkata Call Girl Salt Lake 👉 8250192130  Available With Room
VIP Kolkata Call Girl Salt Lake 👉 8250192130 Available With Roomishabajaj13
 
On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024APNIC
 
VIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call Girl
VIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call GirlVIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call Girl
VIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call Girladitipandeya
 
How is AI changing journalism? (v. April 2024)
How is AI changing journalism? (v. April 2024)How is AI changing journalism? (v. April 2024)
How is AI changing journalism? (v. April 2024)Damian Radcliffe
 
Call Girls In Saket Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Saket Delhi 💯Call Us 🔝8264348440🔝Call Girls In Saket Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Saket Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...
Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...
Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...SofiyaSharma5
 
FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607
FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607
FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607dollysharma2066
 
VIP Kolkata Call Girl Kestopur 👉 8250192130 Available With Room
VIP Kolkata Call Girl Kestopur 👉 8250192130  Available With RoomVIP Kolkata Call Girl Kestopur 👉 8250192130  Available With Room
VIP Kolkata Call Girl Kestopur 👉 8250192130 Available With Roomdivyansh0kumar0
 
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
Russian Call Girls in Kolkata Samaira 🤌 8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Samaira 🤌  8250192130 🚀 Vip Call Girls KolkataRussian Call Girls in Kolkata Samaira 🤌  8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Samaira 🤌 8250192130 🚀 Vip Call Girls Kolkataanamikaraghav4
 
Delhi Call Girls Rohini 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Rohini 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls Rohini 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Rohini 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Callshivangimorya083
 
Hot Service (+9316020077 ) Goa Call Girls Real Photos and Genuine Service
Hot Service (+9316020077 ) Goa  Call Girls Real Photos and Genuine ServiceHot Service (+9316020077 ) Goa  Call Girls Real Photos and Genuine Service
Hot Service (+9316020077 ) Goa Call Girls Real Photos and Genuine Servicesexy call girls service in goa
 
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...APNIC
 
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝soniya singh
 

Recently uploaded (20)

Rohini Sector 22 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 22 Call Girls Delhi 9999965857 @Sabina Saikh No AdvanceRohini Sector 22 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 22 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
 
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
 
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts serviceChennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts service
 
Russian Call girl in Ajman +971563133746 Ajman Call girl Service
Russian Call girl in Ajman +971563133746 Ajman Call girl ServiceRussian Call girl in Ajman +971563133746 Ajman Call girl Service
Russian Call girl in Ajman +971563133746 Ajman Call girl Service
 
VIP Kolkata Call Girl Salt Lake 👉 8250192130 Available With Room
VIP Kolkata Call Girl Salt Lake 👉 8250192130  Available With RoomVIP Kolkata Call Girl Salt Lake 👉 8250192130  Available With Room
VIP Kolkata Call Girl Salt Lake 👉 8250192130 Available With Room
 
On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024
 
VIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call Girl
VIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call GirlVIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call Girl
VIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call Girl
 
How is AI changing journalism? (v. April 2024)
How is AI changing journalism? (v. April 2024)How is AI changing journalism? (v. April 2024)
How is AI changing journalism? (v. April 2024)
 
Call Girls In Saket Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Saket Delhi 💯Call Us 🔝8264348440🔝Call Girls In Saket Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Saket Delhi 💯Call Us 🔝8264348440🔝
 
Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...
Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...
Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...
 
FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607
FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607
FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607
 
VIP Kolkata Call Girl Kestopur 👉 8250192130 Available With Room
VIP Kolkata Call Girl Kestopur 👉 8250192130  Available With RoomVIP Kolkata Call Girl Kestopur 👉 8250192130  Available With Room
VIP Kolkata Call Girl Kestopur 👉 8250192130 Available With Room
 
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
 
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
 
Rohini Sector 6 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 6 Call Girls Delhi 9999965857 @Sabina Saikh No AdvanceRohini Sector 6 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 6 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
 
Russian Call Girls in Kolkata Samaira 🤌 8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Samaira 🤌  8250192130 🚀 Vip Call Girls KolkataRussian Call Girls in Kolkata Samaira 🤌  8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Samaira 🤌 8250192130 🚀 Vip Call Girls Kolkata
 
Delhi Call Girls Rohini 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Rohini 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls Rohini 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Rohini 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
 
Hot Service (+9316020077 ) Goa Call Girls Real Photos and Genuine Service
Hot Service (+9316020077 ) Goa  Call Girls Real Photos and Genuine ServiceHot Service (+9316020077 ) Goa  Call Girls Real Photos and Genuine Service
Hot Service (+9316020077 ) Goa Call Girls Real Photos and Genuine Service
 
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...
 
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝
 

Week 1 - Interactive News Editing and Producing

  • 1. Interactive News Editing and ProductionThursday, Jan. 8
  • 2. • Talk about ourselves and our focus • Class logistics • How the web works • HTML I • Narrative storytelling • First data visualization exercise • Homework Today
  • 3. • Your name • Hometown • Undergraduate degree • Personal history • Previous employment • Professional passion(s) • Most want to learn in this class Introduce yourself
  • 4. Class site canvas (http://bit.ly/1AuuRsH) Class structure: • 3-hour class with a 50-minute optional lab • Mostly hands-on workshops and focused assignments • No final project Grading: Homework 40%, workshops 40%, engagement 20% Logistics
  • 5. • Plain text editor like Textwrangler (Macs) or Notepad++ (PCs) • Newest versions of Chrome and Firefox w/Firebug • Photoshop or other photo editing software • Non-NU Google account connected with Google Fusion Tables • Twitter account What you need • “HTML & CSS: Design and Build Websites” by Jon Duckett • “Don’t Make Me Think Revisited” by Steve Krug
  • 6. Officially Friday from around 4:30 p.m. in the Loop campus. Doesn’t hurt emailing me as well. kurtgessler@gmail.com kurt.gessler@northwestern.edu kgessler@tribune.com Office hours
  • 7. “The purpose of the schools [is] to, as one teacher argues, ‘Teach carpentry, not hammer.’ We need to teach the whys and ways of the world. Tools come and tools go. Teaching our children tools limits their knowledge to these tools and hence limits their futures.” - Michael Bellino, an electrical engineer at Boston University's Center for Space Physics ‘Teach carpentry, not hammer’
  • 8. Journalism 451 is a digital laboratory designed to arm you with the perspective and essential skills to be at the epicenter of a digital newsroom, assessing, sometimes swiftly, what needs to be done and how and when to do it. It’s more than just tools, because tools change and evolve. You need to know why we use them. And it’s real. What this class is about
  • 9. • Fundamental knowledge of how the web works • HTML5, CSS and responsive web design • CMS basics • Digital storytelling and data visualization tools • Breaking news writing, content curation and writing from multiple sources • Headline writing • SEO and identifying trends • Analytics and audience analysis • Social media Core concepts
  • 10. Deep dive into web development A long hand-holding-type project you could never replicate away from the class Long-form lamentation of journalism or ivory tower navel-gazing at NYT Innovation Report What this class isn’t about
  • 11. How the web works
  • 12. The first ARPANET link was established between UCLA and the Stanford Research Institute on Oct. 29, 1969 … But that’s not what we’re talking about. At all. How the web works
  • 13. We want to answer the question: “What’s your browser doing when it displays a page?” Exploration of that question has many pragmatic implications as you work on the web. How the web works
  • 14. • You enter a URL into your browser, such as Chrome or Firefox. • Vocab: URL = Uniform Resource Locator • That URL gets parsed by your browser in this format: <protocol>://<server>/<path/file> http://www.northwestern.edu/admissions/graduate.ht ml Finding your web page
  • 15. • The protocol defines the how computers will communicate. In this example, it’s “http” or Hypertext Transfer Protocol. • The server tells your computer the name of the computer serving the requested page. • The path indicates which page you’re interested in accessing on the requested website. Finding your web page
  • 16. Two important takeways: case sensitivity and paths Are these paths the same? www.redeye.com/News/Story.html www.redeye.com/news/story.html No. Web files and directories are case sensitive. Finding your web page
  • 17. In the following example, what does “admissions” represent in the file structure? http://www.northwestern.edu/admissions/graduate.ht ml A folder. And graduate.html is an html document. Finding your web page
  • 18. • Now that your browser has chopped up the URL, it can get down to work, which is establishing a communication session with the requested server. • Vocab: These computers are called “web servers”, because they respond to (i.e. serve) requests from “clients,” like your browser. Finding your web page
  • 19. • Your browser now uses the internet’s phone book: the Domain Name System (DNS). It’s how clients, like your browser, convert a server name into its corresponding IP address. • Want to look up a name in DNS? Visit http://www.webmaster-toolkit.com/dns- query.shtml Finding your web page
  • 20. • When you type in chicagotribune.com that resolves to 184.26.143.177 • These numbers are called IP (Internet Protocol) addresses. They are generally 10 or 12 digits. • Want to find your IP address? http://whatismyipaddress.com Finding your web page
  • 21. Next, your computer sends something called an HTTP (Hypertext Transfer Protocol) request. One of two things happen: • If it can find the page you requested, it returns it in an HTTP response • If the server can’t find the page you requested, it returns a “404 page not found” response Making a connection
  • 22. • If it a successful connection is established, the actual content starts to be transferred and presented by your browser • The format it follows? HTML (HyperText Markup Language) • That information may be in one place (on one server). It, most likely, is not. Making a connection
  • 23.
  • 24. A web page is controlled by three parts: • HTML controls the structure of a web page • CSS controls the presentation • Javascript controls its behavior (drag and drop, swipe, dynamic style changes, button functionality) Web page structure
  • 25.
  • 26. • How does a browser render a web page? • It chops up elements to form a Document Object Model (DOM) tree. Read more? http://www.html5rocks.com/en/tutorials/internals/howbrowserswork/#Render_tree_construction Web page structure
  • 27.
  • 28. • OK, you’ve typed a URL, it’s been DNS resolved to an IP address. We’ve made a successful connection • Now, data (web documents, images) are transferred to your web cache • A web cache is a mechanism for the temporary storage (caching) of web documents to reduce bandwidth usage, server load and lag Data caching
  • 29. Why are some webpages slow to load while others are speedy? • Too many requests/high traffic • Too many off-server requests • HTML/CSS errors • File sizes, especially images Web page lag
  • 30. Manage your images properly before you FTP them to your image or web server. Web page lag • Always save for web and devices • Size them appropriately (never enlarge)
  • 31. • You told your browser you wanted to visit a particular URL • Your browser parsed the URL • Your browser used the DNS system to convert the user-friendly name into an IP address • You connected to the IP address • Your browser sent the server an HTTP request asking for a copy of the HTML document Anatomy of a page load
  • 32. • The server found the requested HTML document and returned it to your browser via an HTTP response • Your browser interpreted and displayed the HTML document, gathering all needed resources and storing them in your web cache Read more: http://www.stanford.edu/class/msande91si/www- spr04/readings/week1/InternetWhitepaper.htm Anatomy of a page load
  • 33. • View source • Chrome Inspect Element • Firebug app for Firefox A few tips and tools
  • 34. Takeaways • Know what a URL means, from the IP address to the path • The internet is case sensitive • Know the parts of the web page • Know the importance of file sizes • Remember your debugging tips
  • 35.
  • 37. • HTML is a language for describing web pages. It houses and describes content within sets of tags. It stands for HyperText Markup Language. • HTML is not a programming language. It is a markup language. • We’ll be using HTML5 with some XHTML standards. What is HTML?
  • 38. • HTML controls the structure of a web page. • CSS controls the presentation. • Javascript controls its behavior. Good, clean HTML contains no style information. What does HTML do?
  • 39. • HTML uses tags in documents to describe the structure of pages. • Most tags will involve both an opening and a closing tag. • Each tag tells the browser something about the data within each container. How does it work?
  • 40. • HTML is delivered as a “documents.” These are then parsed, which turns them into the Document Object Model (DOM) within a web browser. • As they are parsed, “elements” are generated from each “tag.” • On your HTML document they are “tags;” on your website, they are “elements.” Move along. Super perfectionist alert …
  • 41. <html>Start and end of an HTML document</html> <head>Metadata, style, script</head> <body>Main content area</body> <p>This is a paragraph of normal text</p> <h1>This is the most important headline</h1> <h6>This is the least important headline</h6> <strong>This is bold text</strong> <em>This is italicized text</em> <blockquote>Sets this text apart</blockquote> Basic HTML5 tags
  • 42. <a>Links</a> <span>Unstyled tag for inline elements<span> <figure><figcaption> HTML5 image and caption containers <img /> Image call <ul><ol><li> List tags and items <aside><header><footer><hgroup><section><nav><article > HTML semantic containers <div>Unstyled container for block-level elements</div> <hr /> Horizontal rule <br /> Line break More HTML5 tags
  • 43. Empty tags are “elements” that contain no content, such as <hr> or <br>, and are usually styled <br /> or <hr /> <img /> under XHTML standards. <img src=“http://coolpic.jpg” alt=“cool pic” /> Empty tags
  • 44. DON’T USE ALL CAPS FOR TAGS. It works, but it’s poor (deprecated) form. In fact, lots of bad things work fine, but don’t do them. Speaking HTML
  • 45. • Opening tags contain attributes. • They give more information about how to render the information contained in the tag. <a href=“http://fakelink.edu”></a> HTML attributes
  • 46.
  • 47. HTML5 is a semantic system, meaning the tags tell browsers how to interpret them. Not styles, per se, but presentation clues. This helps with: • SEO, page maintenance, accessibility Again, though, styling is left to CSS not HTML Markup with meaning
  • 48. <strong> not <b> <em> not <i> <blockquote> <address> <cite> Browsers will often apply a style as they render these. But you can override. Markup with meaning
  • 49. Good HTML structure will allow you to apply styles to relative positions. <article> <h1>header</h1> <p>CTA ghost trains are <em>very</em>scary</p> </article> <article> is the parent of <h1> and <p>. <h1> and <p> are children from <article>. <p> is the parent of <em> Parents and children
  • 50. It’s valid structure. But when you nest tags, you close the tags in the opposite order that you opened them. Yes: <strong>This is <em>right</em></strong> No: <strong>This is <em>right</strong></em> Nesting tags
  • 52. <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf‐8" /> <title>TITLE GOES HERE</title> <link rel="stylesheet” type="text/css" href="style.css" /> </head> <body>CONTENT GOES HERE </body> </html> HTML-to-English translation Tells browser "this is an HTML file” Let’s converse in English Starts metadata Translate characters this way Appears in your browser tab Get presentation info here I’m done with the metadata Start main content area End of the main content area “All done with this page”
  • 53. 1. Open the file lesson1.html with your text editor 2. Make the changes detailed in the commented out section at the top of the file: <!- - COMMENTS --> 3. Save 4. Open your file with Safari/Firefox/Chrome to see changes Lesson I
  • 54. There are three types of lists: ordered lists <ol>, unordered lists <ul>, definition lists <dl>. • Ordered lists are used for sequential lists like instructions for assembling a box • Unordered lists used bullet points rather than characters • Definition lists really aren’t used much Lists
  • 55. Note: You can change numbering schema. <h2>How to create web pages</h2> <ol> <li>Write markup</li> <li>Save file</li> <li>Preview file in browser</li> </ol> Ordered lists
  • 56. Note: You can change bulleting schema. <h2>Needs for web page building</h2> <ul> <li>Text editor</li> <li>FTP client</li> <li>Photoshop</li> <li>Domain</li> </ul> Unordered lists
  • 57. <dl> <dt>HTML</dt> <dd>HTML is a language for describing web pages.</dd> </dl> Definition lists
  • 58. 1. Open the file lesson2.html with your text editor 2. Format the recipe (with its two lists) as appropriate 3. Save 4. Open your file with Safari/Firefox/Chrome to see changes Lesson II
  • 60. • Many stories that have a strong or entirely necessary geographic component • Visualized data often reveals the real story • Video and audio convey mood and setting • Documents show authenticity Words and photos are not enough in 2015. Why bother?
  • 61. ‘The reward of data visualization comes from discovery’ Jer Thorp, ex-New York Times
  • 62. ‘I’d rather have a Snow Fall builder than a Snow Fall.’ Quartz editor Kevin Delaney
  • 63. Geography of jobs Spot the Ball Ted Ligety Moore, Okla. tornado Boston Marathon bombing Harsh Treatment graphic novels Regional dialect Everyone has a name Cardstacks Effective storytelling
  • 65. Create a Google Fusion document based on the the file chicagospeedcameras.csv. This is a simple file with predetermined geopoints (lat/long) and marker_icons. We’ll import, customize the info window and marker icons, and publish. Exploration I: GFT geopoints
  • 66. Select “Tools/Change info window Layout” (“Configure info window” in classic). Options: Automatic (checkbox based on your columns) or Custom (based on column plus open (inline) HTML) Customizing map info windows
  • 67. Select “Tools/Change map styles” Options: Fixed, Column, Buckets For fixed, you have 10 icons: https://support.google.com/fusiontables/answer/2679986?hl=en&ref_topic=2575652 You can use custom icons as well: https://developers.google.com/maps/tutorials/customizing/custom-markers Customizing marker icons
  • 68. Select Publish, Change visibility/Change/Public on the web/Done. Re-select Publish, and specific your embed width and format (iframe embed or HTML + JS) Publishing
  • 69. Create a Google Fusion document based on the the file bibgourmand2014.xlsx. This file only contains addresses not geopoints. We’ll import how Google manages this process and what adjustments we need to make. Exploration II: addresses
  • 70. To select which column is plotted, toggle over to Map of Area, click on “Map of Area” and select “Select Location” and the column desired. Exploration II: addresses
  • 71.
  • 72. • Create a map illustrating what areas got the most snow from the recent winter storm. • Follow one of two paths listed at the top of snowfall-template.html in the mapping folder, using the files town-coords.xlsx, snowfall- template.html and snowfall-20150106.xlsx or nws-rawdata.docx. Lesson I: Snowfall map
  • 73. • Find a visual story to share and explain in a few grafs why it worked. You might be asked to show and tell. • GFT homework: snowfall map • HTML homework: Read Duckett Chapters 1-3 • Good reading: “The News Mixtape” (http://bit.ly/1tPQUIl) • Good reading: “Platforms Not One-Offs” (http://bit.ly/1tPQWQv) Week 1 homework
  • 74. • Headlines • HTML II • Google Fusion Tables II (polygons) • Likely WordPress Next week