SlideShare una empresa de Scribd logo
1 de 43
Descargar para leer sin conexión
Introduction to Web Design 
For Literary Theorists 
First Workshop: 
An Introduction to (X)HTML 
20 November 2014 
Patrick Mooney 
Co-Lead TA, 2013-2015 
Department of English 
UC Santa Barbara
Objectives for this workshop series 
● To learn the basic skills involved in building a 
small website for a course or section. 
● To actually build such a web site, and to do a 
good job of it. 
● To engage in practices that minimize the labor 
required to do so. 
● To make your teaching practices more visible 
on the web. 
● To be able to read various versions of HTML in 
other places on the web.
Objectives for today’s workshop 
● To learn the basics of HTML, the standard 
markup language for web content. 
● To understand the assumptions that HTML 
makes about your content, and to leverage 
those assumptions to produce a web site that 
is attractive and easily “parsed” by a viewer. 
● To engage in practices that will allow you to 
participate effectively in the later workshops in 
this series. 
● To begin actually constructing a static section 
website.
Details, details ... 
● I’m going to be moving over a lot of details 
rather quickly today. 
● You don’t need to memorize them all. 
– There are great references on the web, of course. 
– This presentation will be online in a few days. 
– What’s important is that you pick up major concepts 
and work along with them. 
– Come talk to me in my Lead TA office hours if you 
have questions! 
● A collection of useful links is online at 
http://is.gd/todoho.
Why have a course/section website? 
● Section websites give your students a central place to 
look for information. 
– Handouts. 
– Notes and announcements. 
– Policy documents. 
● Helps to make your teaching practices easily visible 
on the web. 
● Helps to establish an identity for you on the web. 
– Helps to link your teaching practices to your online identity. 
– One of our recurring concerns throughout this series of 
workshops will be increasing the visibility of your web 
presence.
Why not just use some other service? 
● Any choice you make for web presence 
management has some downsides. As with 
everything in life, no solution is ever perfect. 
● Here are some downsides to building a web site 
by hand with HTML: 
– You have to learn HTML. (Not hard, especially for 
literary theorists.) 
– You have to see your content in a non-word-processing 
based way. (i.e., you have to think 
primarily about content and structure rather than 
presentation.) 
– You have to find someone to host the content. (Not 
difficult, nor necessarily expensive.)
Why not GauchoSpace? 
● GauchoSpace imposes its own structure and 
presentation on your content. 
– In my personal opinion, GauchoSpace’s layout is 
horrible. 
– Many of you have interacted with students who have a 
hard time finding information on GauchoSpace. This is 
partly because GauchoSpace’s design is poorly thought 
out and does not leverage existing web-based 
information-seeking practices. 
● GauchoSpace is access-controlled. 
– Your teaching practices are only visible to people 
enrolled in the course, and only while they are enrolled in 
the course.
Why not some free blogging service? 
● Free blogging services tie your content to a 
particular provider. 
– You can’t easily move your website from, say, 
Tumblr to WordPress without re-doing a lot of 
work. 
● All free blogging services restrict what you can 
actually do with your HTML code. 
– This is a bad thing for reasons I won’t fully explain 
until later in the quarter. 
● Blogging services impose their own 
information ontology onto your content.
Why build a web site with HTML + CSS? 
● It’s not that hard. 
● You gain full control over how your text is 
presented. 
● You gain full control over how your text is organized 
and ontologized. 
● You can easily move your content elsewhere with a 
minimum of work if your content provider … 
– goes out of business 
– cancels the service you use 
– changes the terms of service on you 
– stops providing adequate service.
What you won’t learn in these 
workshops 
● Everything about every version of HTML. 
● Everything about producing cutting-edge designs. 
● How to produce web sites with active content. 
● More than a little bit about search-engine optimization. 
WHICH IS TO SAY … 
● Some of the information you’ll get here is partial or 
moderately simplified (but it’s honest and, I think, sufficient). 
● You’re not going to walk out of here with the skills to be a 
professional web designer. 
● However, you will walk out of here knowing enough to 
present your content to your students – and the world – in a 
way that reflects positively on you.
How the Web Works: Quick 
Refresher 
● You type an address (URL) into your browser’s 
address bar. 
● Your browser interprets the address to discover which 
server (another computer on the Internet) holds the 
requested document (“web page”). 
● The document is fetched from that server. 
● Any supporting documents are also fetched and 
interpreted. 
● Your browser interprets and displays (“renders”) the 
document in a way that is compliant with standards. 
● The user then (hopefully) reads and/or otherwise 
interacts with the document.
● Your web site will consist 
of multiple HTML files and 
any other supporting 
documents. 
● Any images (videos, audio, 
other media) that are 
needed for your web site 
are not part of the HTML 
file itself, but separate 
documents.
So, HTML ... 
● stands for “Hypertext Markup Language.” 
● is the standard way of describing the structure of textual 
documents on the web. 
– HTML is not a “programming language.” There are no 
commands. There are no variables. It just describes the structure 
of a text. 
● does not give you complete control over every tiny aspect 
of how a document appears in the user’s browser. 
● can be read and understood by every piece of software 
that deals with textual documents on the web. 
● Is a standard administered and maintained by the World 
Wide Web Consortium (W3C).
Some HTML coding examples 
● HTML consists of plain text marked up with 
tags that indicate the structure of the text that 
is being marked up. 
● There are several dozen legitimate tags (many 
of which you will never use). Each begins with 
< (the less-than sign) and ends with > (the 
greater-than sign). 
● Tags can have attributes (characteristics). 
Certain attributes for certain tags are 
mandatory. 
<img src="kitten.jpeg" width="192" height="108">
Tags in your document 
● Each tag that you open must be closed before 
the end of the document. 
● Technically, tags should be closed in the 
reverse order in which they were opened. 
Correct: 
<i><b>Example</b></i> 
Incorrect: 
<i><b>Example</i></b> 
● Some tags (those that are not containers for 
textual content) can be self-closed: 
<img src="kitten.jpeg" width="192" height="108" />
A quick reminder 
● The texts that you work with, even in non-electronic 
documents, are already “marked up” in various ways. 
– paragraphs, pagination, chapter divisions, emphasis, 
punctuation – are all (in a sense) paratextual 
elements that give you hermeneutic clues. 
– All you’re doing with your HTML markup is making (a 
certain set of) hermeneutic clues explicit. 
“Every page, even a blank page, even a page of George 
W. Bush’s ignorant and vapid prose, is n-dimensional.” 
— Jerome McGann, Radiant Textuality: Literature After the World Wide 
Web (p. 184; ch. 6)
A minimally acceptable XHTML 
document 
● The <!DOCTYPE> declaration is (to you) a string of gibberish whose purpose is to 
tell the browser what flavor of HTML you’re using. 
● The xmlns= attribute on the <html> tag tells XML parsers how to parse the HTML. 
● You can just look up these values, or (even better) use existing documents as 
templates.
Some Useful Block-Level Tags 
<blockquote></blockquote> – you know what 
this does, right? 
<h1></h1> – marks a top-level heading 
<h2></h2> – marks a subheading 
<h6></h6> – marks a sub-sub-sub-sub-subheading 
<p></p> – marks up paragraphs 
<ul></ul> – unordered lists (bullet points) 
<ol></ol> – ordered lists (numbers, letters) 
<li></li> – a list item
Some Useful Inline Tags 
<abbr title="Modern Language 
Association">MLA</abbr> – an abbreviation 
<br /> – a line break. 
<cite></cite> – marks a citation. 
<code></code> – marks up computer code. 
<em></em> – marks text that is emphasized. 
<img src="a URL" alt="some text" /> – embeds an 
image. 
<strong></strong> – marks text that is very strongly 
emphasized. 
<q></q> – marks a quotation.
The <img> tag 
<img src="fakebeard.jpg" width="480" height="640" 
alt="a man with a fake beard" /> 
<img src="http://i.imgur.com/HndKeBY.jpg" width="480" 
height="640" alt="a man with a fake beard" /> 
● The src attribute is the location (URL) of the image itself. 
● The width and height attributes (measured in pixels) are 
hints to help the browser render the page without having to 
wait for the image to download. 
● The (mandatory) alt attribute tells browsers for visually 
impaired users what to say instead of displaying the picture. 
● Note that, because it’s not a container for text, the <img> 
tag is self-closed.
Some image considerations 
● The fewer images you use, the more quickly your 
web page will render, because each image has to 
be fetched separately. 
– You can ameliorate the rendering delay by using the 
width and height attributes. 
● Using a bunch of spurious damn images just 
because you feel like using a bunch of spurious 
damn images is often considered to be 
unprofessional, or at least poor design. 
– Keep the focus on what matters. 
● Use the alt attribute to provide cues for visually 
impaired users.
Some image considerations 
● Image file sizes will often be much larger than 
the size of the HTML document that refers to 
them. Hosting them elsewhere than on your 
own server can save you money. 
– However, if you’re using images that are hosted on 
a site other than your own, make very sure that 
that’s OK with the site from which you’re linking 
them. 
● A rule of thumb: use the JPEG format for 
photographs, and PNG for line-drawings and 
other non-photographic images.
The <a> tag 
● Creates links: 
<p><a href="http://gauchospace.ucsb.edu">GauchoSpace 
login page</a></p> 
● Creates anchor points inside a document to which 
you can link: 
<a name="no-very-late-papers" /> 
<h2><a name="no-very-late-papers">Late paper 
policy</a></h2> 
● It’s increasingly common to create anchor points with 
the id attribute (on any tag) 
<h2 id="no-very-late-papers">Late paper policy</h2>
● A link to an anchor point might look like this: 
<p>Details are spelled out in my <a 
href="http://patrickbrianmooney.nfshost.com/~patrick/ta 
/s14/eng133so/section-guidelines.html#no-very-late-papers"> 
late paper policy</a>.</p> 
– Links to anchor points are constructed the same way 
whether the anchor point is crated with <a 
name="something"> or <tag id="something">.
Different ways to specify URLs 
● You can always specify a full URL any time a 
URL is required (with <a>, <img>, etc.). 
<a 
href="http://gauchospace.ucsb.edu">GauchoSpac 
e login page</a> 
<img src="http://i.imgur.com/HndKeBY.jpg" 
width="480" height="640" alt="a man with a fake 
beard" /> 
● However, this is cumbersome if you have to do 
it all the time, so there are also ways to specify 
URLs relative to the URL of the document 
doing the specifying.
Partially specified URLs 
There are several possibilities, each relative to the 
URL of the document containing the partial URL. 
If the base URL of a document is, say, 
http://patrickbrianmooney.nfshost.com/~patrick/ta/index.html … 
● Not specifying any folders: 
<img src="bulletpoint.png" /> means “the file 
‘bulletpoint.png’ in the same folder as the document 
referring to it”: 
http://patrickbrianmooney.nfshost.com/~patrick/ta/bulletpoint.png
If the base URL of a document is, say, 
http://patrickbrianmooney.nfshost.com/~patrick/ta/index.html … 
● In a sub-folder of the current folder: 
<a href="s14/eng133so/index.html"> means “the file 
‘index.html’ in the folder ‘eng133so,’ which is in the 
folder ‘s14,’ which is in the current folder”: 
http://patrickbrianmooney.nfshost.com/~patrick/ta/s14/ 
eng133so/index.html 
– Note that the URL does not begin with a 
slash 
● In the folder above the current folder: 
<a href="../personal.html"> means “the file 
‘personal.html’ in the folder above the current folder”: 
http://patrickbrianmooney.nfshost.com/~patrick/personal.html
If the base URL of a document is, say, 
http://patrickbrianmooney.nfshost.com/~patrick/ta/index.html … 
● Full path from the root (top-level) folder: 
<a href="/~patrick/personal.html"> means “the file 
‘personal.html’ in the folder “~patrick,” which is in the 
top-level folder”: 
http://patrickbrianmooney.nfshost.com/~patrick/personal.html 
– Note that the URL does begin with a slash 
● The fact that you can refer to other documents in 
these ways is a good reason to have a sensible 
file system layout that you can remember.
Tables for presenting information 
Begins the table 
Table heading 
A table row 
A table row 
Ends the table 
<table> 
<tr><th>Name</th><th>Grade</th></tr> 
<tr><td>John Smith</td><td>B+</td></tr> 
<tr><td>Ana Garcia</td><td>A-</td></tr> 
</table> 
● A table consists of individual table rows, <tr>, (and should 
have a table header); each row contains individual table data 
“cells” (<td></td>).
● In the 90s, it was common to enclose entire 
documents in a table to control document layout. 
Don’t do this. 
– Tables have a semantic meaning. 
– Doing this causes problems for screen readers, 
as well as for other types of software that 
processes web pages other than “standard web 
browsers.” 
– You should use CSS for controlling page layout. 
We’ll talk about this next time.
Special characters in HTML documents 
● Begin with an ampersand; end with a semicolon. 
– Replace reserved characters that have special meanings: 
&lt; means the less-than sign: < 
&gt; means the greater-than sign: > 
&amp; is the ampersand: & 
&quot; is the (non-smart) double-quote mark: " 
– Provide a convenient way to enter characters that you 
can’t easily type: 
&eacute; is a lower-case E with an acute accent: é 
&Eacute; is an upper-case E with acute accent: É 
&pound; is the British currency symbol: £ 
&copy; is the copyright sign: © 
– Case matters.
Tags you’ll see, but shouldn’t use 
<b></b> – bold text 
<big></big>, <small></small> – to change text size 
<blink></blink> – is primarily used to ensure that 
people hate you. 
<center></center> – for centering text 
<font></font> – for font size and face 
<i></i> – italic text 
<sub></sub>, <sup></sup> – subscript, superscript. 
<u></u> – underlined text
Good Semantic XHTML Practices 
(some are mandatory) 
● Code follows semantic rules and is formally 
valid. 
● Tags and attributes are entirely in lowercase. 
● Every tag is either self-closed or closed after 
the end of its content occurs. 
– Reminder: tags are closed in the reverse order in 
which they were opened. 
● Attribute values are enclosed in quotation 
marks. 
● Code is easily readable by you so that changes 
are not painful to make.
● Because the rendering of HTML collapses 
whitespace (spaces, tabs, carriage returns), you 
can put in as many spaces (tabs, carriage 
returns) as you want to make your meaning and 
structure clear to yourself – without affecting 
how your document looks when the user’s 
browser renders it. 
● Describes the structure of the text, rather than 
attempting to control appearance. 
– To put it another way, you should separate 
appearance from content. 
– We’ll talk in detail about controlling appearance at 
our next workshop.
Attributes for any tag 
● <tag id="something"> 
– Attaches a unique ID to an individual tag for some 
purpose of your own. 
● <tag class="something something_else"> 
– Indicates that the tag belongs to one or more groups 
that you yourself designate for some purpose of your 
own. 
● <tag style="some valid styling information"> 
– This is a poor overall strategy for styling your text, 
for reasons we’ll talk about at our next meeting, but 
not a bad way to see quickly how things look. 
Note that there is no <tag> tag.
Tags that do nothing (that’s visible) 
● <span></span> – marks an inline group of text 
for some purpose of your own. 
<p>I thought that <span class="book-title">1Q84</span> was a 
very disappointing novel.</p> 
● <div></div> – marks a block-level group of text 
for some purposes of your own. 
<div class="document-header"> 
<p>I was very disappointed by <cite>Infinite Jest</cite>.</p> 
<p>However, I quite enjoyed <cite>House of 
Leaves</cite>.</p> 
</div> 
● We’ll talk about these extensively next time.
A few words about validity & 
standards compliance 
● You can get away with writing bad HTML, and it 
may look OK when rendered. However: 
– Invalid HTML renders differently in different browsers. 
It’s also very hard for machines to parse in other ways. 
– HTML that is presentational rather than semantic 
involves vastly more effort to maintain. 
– Presentational, non-semantic HTML limits your ability 
to make your web pages intelligible to machines 
instead of people. 
● Google search 
● Screen readers for the visually impaired 
● Other web applications …
Making sure it works 
● Write good HTML in the first place. 
– Make it intelligible to you. 
– Semantic, not presentational. 
– Use a text editor that helps you to check validity 
with features like syntax highlighting. 
● Check formal validity with the W3C’s validator. 
– You can also use it to clean up your code. 
● Test on at least two different browsers. 
– Ideally, you should also test it on several devices: 
● Your phone, different operating systems, etc.
Intro to web information ontology 
● Don’t try to put everything on one page. Break 
information into multiple documents, each of which 
is … 
– More or less complete in itself. 
– Linked to other, related documents. 
● And linked back to your home page. 
● Use good journalistic writing practices. 
– Most important information first in (almost) any 
document. 
– Crucial information is “above the fold.” 
– Your semantic markup helps to show the structure of 
your document to the viewer.
● Organize your files in a series of folders that 
makes sense to you and provides an 
epistemological indication in the folder path of 
how the information is categorized. 
– Remember that your folder path will become part 
of the URL when you upload your site. 
– Make each subfolder increasingly specific in some 
sense. 
● Include an index.html file in each folder. 
– Generally, a good practice here is to make each 
index.html file a menu that provides an overview of 
what’s in that folder, or in the subfolders it 
contains.
A suggestion … 
● You won’t really have learned anything today 
unless you apply these skills in the near future. 
– Take your existing section guidelines handout and 
produce an HTML version. 
– Start setting up a section website. You can take 
one of mine as a model, if you’d like. 
– Produce HTML versions of any other documents 
that you have the time and inclination to produce. 
– Run them through the W3C’s validator and resolve 
any problems. 
– Come talk to me in my office hours if you hit any 
snags!
Building a minimalist personal web site 
● You should have a main page with a blurb about 
who you are, plus links to major other information 
on the site. (Having some color on it somewhere 
is often thought to be a good idea.) 
● Good pages to have might include: 
– Web collections you’ve built for students. 
– Your CV. 
– Links to you on other places on the web. 
● Linking back to your web page from your LinkedIn, 
Facebook, academia.edu, Twitter, Flickr, Google+, and other 
profiles is a smart move. 
– A “personal info” page (if done thoughtfully and 
tastefully).
Where we’re going next 
(or, let’s talk about scheduling) 
● When’s a good time to have a follow-up workshop? Next 
week? 
● Our second workshop (winter quarter) will introduce CSS, 
or Cascading Style Sheets. 
– This will serve as an introduction to how you control the 
presentation of semantically encoded HTML. 
– We will also talk about hosting your content once you have 
some content to host. 
● Our third workshop (spring quarter) will present some 
additional, related topics: 
– Making your content meaningful to search engines and other 
text-parsing software. 
– Preventing search engines from indexing your content. 
– Google Scholar’s article-inclusion guidelines.

Más contenido relacionado

La actualidad más candente

Week 1 - Interactive News Editing and Producing
Week 1 - Interactive News Editing and ProducingWeek 1 - Interactive News Editing and Producing
Week 1 - Interactive News Editing and Producingkurtgessler
 
Web Development for UX Designers
Web Development for UX DesignersWeb Development for UX Designers
Web Development for UX DesignersAshlimarie
 
UVA MDST 3703 JavaScript (ii) 2012-10-04
UVA MDST 3703 JavaScript (ii) 2012-10-04UVA MDST 3703 JavaScript (ii) 2012-10-04
UVA MDST 3703 JavaScript (ii) 2012-10-04Rafael Alvarado
 
Introduction to Frontend Development - Session 1 - HTML Fundamentals
Introduction to Frontend Development - Session 1 - HTML FundamentalsIntroduction to Frontend Development - Session 1 - HTML Fundamentals
Introduction to Frontend Development - Session 1 - HTML FundamentalsKalin Chernev
 
Responsible Design: Accountable Accessibility
Responsible Design: Accountable AccessibilityResponsible Design: Accountable Accessibility
Responsible Design: Accountable AccessibilityBilly Gregory
 
Drupal7 Theming session on the occassion of Drupal7 release party in Delhi NCR
Drupal7 Theming session on the occassion of  Drupal7 release party in Delhi NCRDrupal7 Theming session on the occassion of  Drupal7 release party in Delhi NCR
Drupal7 Theming session on the occassion of Drupal7 release party in Delhi NCRGaurav Mishra
 
Web Design & Development - Session 1
Web Design & Development - Session 1Web Design & Development - Session 1
Web Design & Development - Session 1Shahrzad Peyman
 
Front End Best Practices
Front End Best PracticesFront End Best Practices
Front End Best PracticesHolger Bartel
 
Parcel – your next web application bundler? by Janis Koselevs at FrontCon 2019
Parcel – your next web application bundler? by Janis Koselevs at FrontCon 2019Parcel – your next web application bundler? by Janis Koselevs at FrontCon 2019
Parcel – your next web application bundler? by Janis Koselevs at FrontCon 2019DevClub_lv
 
Chapter 2 introduction to html5
Chapter 2 introduction to html5Chapter 2 introduction to html5
Chapter 2 introduction to html5nobel mujuji
 
HTML5 and CSS3: does now really mean now?
HTML5 and CSS3: does now really mean now?HTML5 and CSS3: does now really mean now?
HTML5 and CSS3: does now really mean now?Chris Mills
 
Improving the Responsive Web Design Process in 2016
Improving the Responsive Web Design Process in 2016Improving the Responsive Web Design Process in 2016
Improving the Responsive Web Design Process in 2016Cristina Chumillas
 
Punch it Up with HTML and CSS
Punch it Up with HTML and CSSPunch it Up with HTML and CSS
Punch it Up with HTML and CSSmtlgirlgeeks
 
Untangling spring week8
Untangling spring week8Untangling spring week8
Untangling spring week8Derek Jacoby
 

La actualidad más candente (20)

Lecture1 B Frames&Forms
Lecture1 B  Frames&FormsLecture1 B  Frames&Forms
Lecture1 B Frames&Forms
 
Week 1 - Interactive News Editing and Producing
Week 1 - Interactive News Editing and ProducingWeek 1 - Interactive News Editing and Producing
Week 1 - Interactive News Editing and Producing
 
Webdesign (2)
Webdesign (2)Webdesign (2)
Webdesign (2)
 
Web dev syllabus
Web dev syllabusWeb dev syllabus
Web dev syllabus
 
Web Development for UX Designers
Web Development for UX DesignersWeb Development for UX Designers
Web Development for UX Designers
 
UVA MDST 3703 JavaScript (ii) 2012-10-04
UVA MDST 3703 JavaScript (ii) 2012-10-04UVA MDST 3703 JavaScript (ii) 2012-10-04
UVA MDST 3703 JavaScript (ii) 2012-10-04
 
Introduction to Frontend Development - Session 1 - HTML Fundamentals
Introduction to Frontend Development - Session 1 - HTML FundamentalsIntroduction to Frontend Development - Session 1 - HTML Fundamentals
Introduction to Frontend Development - Session 1 - HTML Fundamentals
 
Responsible Design: Accountable Accessibility
Responsible Design: Accountable AccessibilityResponsible Design: Accountable Accessibility
Responsible Design: Accountable Accessibility
 
Drupal7 Theming session on the occassion of Drupal7 release party in Delhi NCR
Drupal7 Theming session on the occassion of  Drupal7 release party in Delhi NCRDrupal7 Theming session on the occassion of  Drupal7 release party in Delhi NCR
Drupal7 Theming session on the occassion of Drupal7 release party in Delhi NCR
 
Web Design & Development - Session 1
Web Design & Development - Session 1Web Design & Development - Session 1
Web Design & Development - Session 1
 
Front End Best Practices
Front End Best PracticesFront End Best Practices
Front End Best Practices
 
Parcel – your next web application bundler? by Janis Koselevs at FrontCon 2019
Parcel – your next web application bundler? by Janis Koselevs at FrontCon 2019Parcel – your next web application bundler? by Janis Koselevs at FrontCon 2019
Parcel – your next web application bundler? by Janis Koselevs at FrontCon 2019
 
Chapter 2 introduction to html5
Chapter 2 introduction to html5Chapter 2 introduction to html5
Chapter 2 introduction to html5
 
Web Development
Web DevelopmentWeb Development
Web Development
 
Class1slides
Class1slidesClass1slides
Class1slides
 
HTML5 and CSS3: does now really mean now?
HTML5 and CSS3: does now really mean now?HTML5 and CSS3: does now really mean now?
HTML5 and CSS3: does now really mean now?
 
Improving the Responsive Web Design Process in 2016
Improving the Responsive Web Design Process in 2016Improving the Responsive Web Design Process in 2016
Improving the Responsive Web Design Process in 2016
 
Punch it Up with HTML and CSS
Punch it Up with HTML and CSSPunch it Up with HTML and CSS
Punch it Up with HTML and CSS
 
Untangling spring week8
Untangling spring week8Untangling spring week8
Untangling spring week8
 
Activity 5
Activity 5Activity 5
Activity 5
 

Destacado

Web design - HTML (Hypertext Markup Language) introduction
Web design - HTML (Hypertext Markup Language) introductionWeb design - HTML (Hypertext Markup Language) introduction
Web design - HTML (Hypertext Markup Language) introductionMustafa Kamel Mohammadi
 
Oracle 12c: Database Table Rows Archiving testing
Oracle 12c: Database Table Rows Archiving testingOracle 12c: Database Table Rows Archiving testing
Oracle 12c: Database Table Rows Archiving testingMonowar Mukul
 
Lecture 21 - "It's just good business"
Lecture 21 - "It's just good business"Lecture 21 - "It's just good business"
Lecture 21 - "It's just good business"Patrick Mooney
 
Lecture 17: Some Thoughts on Education
Lecture 17: Some Thoughts on EducationLecture 17: Some Thoughts on Education
Lecture 17: Some Thoughts on EducationPatrick Mooney
 
Lecture 12 - What's Eula Worth? (9 May 2012)
Lecture 12 - What's Eula Worth? (9 May 2012)Lecture 12 - What's Eula Worth? (9 May 2012)
Lecture 12 - What's Eula Worth? (9 May 2012)Patrick Mooney
 
Lecture 14 - The Smallest of Small Towns (16 May 2012)
Lecture 14 - The Smallest of Small Towns (16 May 2012)Lecture 14 - The Smallest of Small Towns (16 May 2012)
Lecture 14 - The Smallest of Small Towns (16 May 2012)Patrick Mooney
 
Oracle 12c RAC Database Software Install and Create Database
Oracle 12c RAC Database Software Install and Create DatabaseOracle 12c RAC Database Software Install and Create Database
Oracle 12c RAC Database Software Install and Create DatabaseMonowar Mukul
 
Lecture 11: How We Find Out Who We Are
Lecture 11: How We Find Out Who We AreLecture 11: How We Find Out Who We Are
Lecture 11: How We Find Out Who We ArePatrick Mooney
 
Lecture 18 - Living in a Block Universe
Lecture 18 - Living in a Block UniverseLecture 18 - Living in a Block Universe
Lecture 18 - Living in a Block UniversePatrick Mooney
 
Lecture 16 - Who's Speaking, and What Do They Say? (23 May 2012)
Lecture 16 - Who's Speaking, and What Do They Say? (23 May 2012)Lecture 16 - Who's Speaking, and What Do They Say? (23 May 2012)
Lecture 16 - Who's Speaking, and What Do They Say? (23 May 2012)Patrick Mooney
 
Oracle 12c RAC Database Part 1 [Grid infrastructure Install]
Oracle 12c RAC Database Part 1 [Grid infrastructure Install]Oracle 12c RAC Database Part 1 [Grid infrastructure Install]
Oracle 12c RAC Database Part 1 [Grid infrastructure Install]Monowar Mukul
 
Lecture 12 - The Robot Apocalypse
Lecture 12 - The Robot ApocalypseLecture 12 - The Robot Apocalypse
Lecture 12 - The Robot ApocalypsePatrick Mooney
 
Lecture 07 - Europe, Home, and Beyond (23 April 2012)
Lecture 07 - Europe, Home, and Beyond (23 April 2012)Lecture 07 - Europe, Home, and Beyond (23 April 2012)
Lecture 07 - Europe, Home, and Beyond (23 April 2012)Patrick Mooney
 
Lecture 05 - The Day the World Went Away
Lecture 05 - The Day the World Went AwayLecture 05 - The Day the World Went Away
Lecture 05 - The Day the World Went AwayPatrick Mooney
 
Lecture 21 - Palimpsest of the Departed World
Lecture 21 - Palimpsest of the Departed WorldLecture 21 - Palimpsest of the Departed World
Lecture 21 - Palimpsest of the Departed WorldPatrick Mooney
 
Lecture 18 - The Turn to Speculative Fiction
Lecture 18 - The Turn to Speculative FictionLecture 18 - The Turn to Speculative Fiction
Lecture 18 - The Turn to Speculative FictionPatrick Mooney
 
Oracle 11g Timesten in memory Database software install
Oracle 11g Timesten in memory Database software installOracle 11g Timesten in memory Database software install
Oracle 11g Timesten in memory Database software installMonowar Mukul
 
Lecture 22 - "Everything was on fire"
Lecture 22 - "Everything was on fire"Lecture 22 - "Everything was on fire"
Lecture 22 - "Everything was on fire"Patrick Mooney
 
Lecture 15: "rich in codes and messages"
Lecture 15: "rich in codes and messages"Lecture 15: "rich in codes and messages"
Lecture 15: "rich in codes and messages"Patrick Mooney
 
Lecture 08 - Memory and Desire
Lecture 08 - Memory and DesireLecture 08 - Memory and Desire
Lecture 08 - Memory and DesirePatrick Mooney
 

Destacado (20)

Web design - HTML (Hypertext Markup Language) introduction
Web design - HTML (Hypertext Markup Language) introductionWeb design - HTML (Hypertext Markup Language) introduction
Web design - HTML (Hypertext Markup Language) introduction
 
Oracle 12c: Database Table Rows Archiving testing
Oracle 12c: Database Table Rows Archiving testingOracle 12c: Database Table Rows Archiving testing
Oracle 12c: Database Table Rows Archiving testing
 
Lecture 21 - "It's just good business"
Lecture 21 - "It's just good business"Lecture 21 - "It's just good business"
Lecture 21 - "It's just good business"
 
Lecture 17: Some Thoughts on Education
Lecture 17: Some Thoughts on EducationLecture 17: Some Thoughts on Education
Lecture 17: Some Thoughts on Education
 
Lecture 12 - What's Eula Worth? (9 May 2012)
Lecture 12 - What's Eula Worth? (9 May 2012)Lecture 12 - What's Eula Worth? (9 May 2012)
Lecture 12 - What's Eula Worth? (9 May 2012)
 
Lecture 14 - The Smallest of Small Towns (16 May 2012)
Lecture 14 - The Smallest of Small Towns (16 May 2012)Lecture 14 - The Smallest of Small Towns (16 May 2012)
Lecture 14 - The Smallest of Small Towns (16 May 2012)
 
Oracle 12c RAC Database Software Install and Create Database
Oracle 12c RAC Database Software Install and Create DatabaseOracle 12c RAC Database Software Install and Create Database
Oracle 12c RAC Database Software Install and Create Database
 
Lecture 11: How We Find Out Who We Are
Lecture 11: How We Find Out Who We AreLecture 11: How We Find Out Who We Are
Lecture 11: How We Find Out Who We Are
 
Lecture 18 - Living in a Block Universe
Lecture 18 - Living in a Block UniverseLecture 18 - Living in a Block Universe
Lecture 18 - Living in a Block Universe
 
Lecture 16 - Who's Speaking, and What Do They Say? (23 May 2012)
Lecture 16 - Who's Speaking, and What Do They Say? (23 May 2012)Lecture 16 - Who's Speaking, and What Do They Say? (23 May 2012)
Lecture 16 - Who's Speaking, and What Do They Say? (23 May 2012)
 
Oracle 12c RAC Database Part 1 [Grid infrastructure Install]
Oracle 12c RAC Database Part 1 [Grid infrastructure Install]Oracle 12c RAC Database Part 1 [Grid infrastructure Install]
Oracle 12c RAC Database Part 1 [Grid infrastructure Install]
 
Lecture 12 - The Robot Apocalypse
Lecture 12 - The Robot ApocalypseLecture 12 - The Robot Apocalypse
Lecture 12 - The Robot Apocalypse
 
Lecture 07 - Europe, Home, and Beyond (23 April 2012)
Lecture 07 - Europe, Home, and Beyond (23 April 2012)Lecture 07 - Europe, Home, and Beyond (23 April 2012)
Lecture 07 - Europe, Home, and Beyond (23 April 2012)
 
Lecture 05 - The Day the World Went Away
Lecture 05 - The Day the World Went AwayLecture 05 - The Day the World Went Away
Lecture 05 - The Day the World Went Away
 
Lecture 21 - Palimpsest of the Departed World
Lecture 21 - Palimpsest of the Departed WorldLecture 21 - Palimpsest of the Departed World
Lecture 21 - Palimpsest of the Departed World
 
Lecture 18 - The Turn to Speculative Fiction
Lecture 18 - The Turn to Speculative FictionLecture 18 - The Turn to Speculative Fiction
Lecture 18 - The Turn to Speculative Fiction
 
Oracle 11g Timesten in memory Database software install
Oracle 11g Timesten in memory Database software installOracle 11g Timesten in memory Database software install
Oracle 11g Timesten in memory Database software install
 
Lecture 22 - "Everything was on fire"
Lecture 22 - "Everything was on fire"Lecture 22 - "Everything was on fire"
Lecture 22 - "Everything was on fire"
 
Lecture 15: "rich in codes and messages"
Lecture 15: "rich in codes and messages"Lecture 15: "rich in codes and messages"
Lecture 15: "rich in codes and messages"
 
Lecture 08 - Memory and Desire
Lecture 08 - Memory and DesireLecture 08 - Memory and Desire
Lecture 08 - Memory and Desire
 

Similar a Introduction to Web Design for Literary Theorists I: Introduction to HTML (v. 2.0)

Web Design for Literary Theorists III: Machines Read, Too (just not well) (v ...
Web Design for Literary Theorists III: Machines Read, Too (just not well) (v ...Web Design for Literary Theorists III: Machines Read, Too (just not well) (v ...
Web Design for Literary Theorists III: Machines Read, Too (just not well) (v ...Patrick Mooney
 
The Technique of Solving Html Assignment Questions
The Technique of Solving Html Assignment QuestionsThe Technique of Solving Html Assignment Questions
The Technique of Solving Html Assignment QuestionsLesa Cote
 
WordPress North East (Jan 2021) ~ SEO Fundamentals For WordPress
WordPress North East (Jan 2021) ~ SEO Fundamentals For WordPressWordPress North East (Jan 2021) ~ SEO Fundamentals For WordPress
WordPress North East (Jan 2021) ~ SEO Fundamentals For WordPressDan Taylor
 
HTML course.ppt
HTML course.pptHTML course.ppt
HTML course.pptRyanTeo35
 
Introduction to web design
Introduction to web designIntroduction to web design
Introduction to web designFitra Sani
 
Important factors to consider while designing your website !
Important factors to consider while designing your website !Important factors to consider while designing your website !
Important factors to consider while designing your website !Shubhankar Gautam
 
Web Service Creation in HTML5
Web Service Creation in HTML5Web Service Creation in HTML5
Web Service Creation in HTML5Tero A. Laiho
 
SEO - What matters and What to do about it
SEO - What matters and What to do about itSEO - What matters and What to do about it
SEO - What matters and What to do about itAbdullah Khan
 
Web Fundamentals Crash Course
Web Fundamentals Crash CourseWeb Fundamentals Crash Course
Web Fundamentals Crash CourseMrAbbas
 
Grow your Magento store: going multilingual and setting up a marketplace
Grow your Magento store: going multilingual and setting up a marketplaceGrow your Magento store: going multilingual and setting up a marketplace
Grow your Magento store: going multilingual and setting up a marketplacePromodo
 
INDUSTRIAL TRAINING Presentation on Web Development. (2).pptx
INDUSTRIAL TRAINING Presentation on Web Development. (2).pptxINDUSTRIAL TRAINING Presentation on Web Development. (2).pptx
INDUSTRIAL TRAINING Presentation on Web Development. (2).pptx12KritiGaneriwal
 
Seo for Engineers
Seo for EngineersSeo for Engineers
Seo for EngineersCort Tafoya
 
Accessibility with Joomla [on a budget]
Accessibility with Joomla [on a budget]Accessibility with Joomla [on a budget]
Accessibility with Joomla [on a budget]Aimee Maree Forsstrom
 
0506-django-web-framework-for-python.pdf
0506-django-web-framework-for-python.pdf0506-django-web-framework-for-python.pdf
0506-django-web-framework-for-python.pdfradhianiedjan1
 
JavaScript SEO Ungagged 2019 Patrick Stox
JavaScript SEO Ungagged 2019 Patrick StoxJavaScript SEO Ungagged 2019 Patrick Stox
JavaScript SEO Ungagged 2019 Patrick Stoxpatrickstox
 
Front end full stack development module 1pptx
Front end full stack development module 1pptxFront end full stack development module 1pptx
Front end full stack development module 1pptxMaruthiPrasad96
 
Nurture Talent's webinar on "Website Development for Non-Technical Founder"
Nurture Talent's webinar on "Website Development for Non-Technical Founder"Nurture Talent's webinar on "Website Development for Non-Technical Founder"
Nurture Talent's webinar on "Website Development for Non-Technical Founder"Amit Grover
 

Similar a Introduction to Web Design for Literary Theorists I: Introduction to HTML (v. 2.0) (20)

Web Design for Literary Theorists III: Machines Read, Too (just not well) (v ...
Web Design for Literary Theorists III: Machines Read, Too (just not well) (v ...Web Design for Literary Theorists III: Machines Read, Too (just not well) (v ...
Web Design for Literary Theorists III: Machines Read, Too (just not well) (v ...
 
The Technique of Solving Html Assignment Questions
The Technique of Solving Html Assignment QuestionsThe Technique of Solving Html Assignment Questions
The Technique of Solving Html Assignment Questions
 
Lecture 9 Professional Practices
Lecture 9 Professional PracticesLecture 9 Professional Practices
Lecture 9 Professional Practices
 
WordPress North East (Jan 2021) ~ SEO Fundamentals For WordPress
WordPress North East (Jan 2021) ~ SEO Fundamentals For WordPressWordPress North East (Jan 2021) ~ SEO Fundamentals For WordPress
WordPress North East (Jan 2021) ~ SEO Fundamentals For WordPress
 
HTML course.ppt
HTML course.pptHTML course.ppt
HTML course.ppt
 
Introduction to web design
Introduction to web designIntroduction to web design
Introduction to web design
 
Important factors to consider while designing your website !
Important factors to consider while designing your website !Important factors to consider while designing your website !
Important factors to consider while designing your website !
 
Web Service Creation in HTML5
Web Service Creation in HTML5Web Service Creation in HTML5
Web Service Creation in HTML5
 
SEO - What matters and What to do about it
SEO - What matters and What to do about itSEO - What matters and What to do about it
SEO - What matters and What to do about it
 
Web Fundamentals Crash Course
Web Fundamentals Crash CourseWeb Fundamentals Crash Course
Web Fundamentals Crash Course
 
Grow your Magento store: going multilingual and setting up a marketplace
Grow your Magento store: going multilingual and setting up a marketplaceGrow your Magento store: going multilingual and setting up a marketplace
Grow your Magento store: going multilingual and setting up a marketplace
 
INDUSTRIAL TRAINING Presentation on Web Development. (2).pptx
INDUSTRIAL TRAINING Presentation on Web Development. (2).pptxINDUSTRIAL TRAINING Presentation on Web Development. (2).pptx
INDUSTRIAL TRAINING Presentation on Web Development. (2).pptx
 
1_Intro_toHTML.ppt
1_Intro_toHTML.ppt1_Intro_toHTML.ppt
1_Intro_toHTML.ppt
 
Seo for Engineers
Seo for EngineersSeo for Engineers
Seo for Engineers
 
Accessibility with Joomla [on a budget]
Accessibility with Joomla [on a budget]Accessibility with Joomla [on a budget]
Accessibility with Joomla [on a budget]
 
Html presentation
Html presentationHtml presentation
Html presentation
 
0506-django-web-framework-for-python.pdf
0506-django-web-framework-for-python.pdf0506-django-web-framework-for-python.pdf
0506-django-web-framework-for-python.pdf
 
JavaScript SEO Ungagged 2019 Patrick Stox
JavaScript SEO Ungagged 2019 Patrick StoxJavaScript SEO Ungagged 2019 Patrick Stox
JavaScript SEO Ungagged 2019 Patrick Stox
 
Front end full stack development module 1pptx
Front end full stack development module 1pptxFront end full stack development module 1pptx
Front end full stack development module 1pptx
 
Nurture Talent's webinar on "Website Development for Non-Technical Founder"
Nurture Talent's webinar on "Website Development for Non-Technical Founder"Nurture Talent's webinar on "Website Development for Non-Technical Founder"
Nurture Talent's webinar on "Website Development for Non-Technical Founder"
 

Más de Patrick Mooney

[2015 07-28] lecture 22: ... Nothing, Something
[2015 07-28] lecture 22:  ... Nothing, Something[2015 07-28] lecture 22:  ... Nothing, Something
[2015 07-28] lecture 22: ... Nothing, SomethingPatrick Mooney
 
Lecture 21: Whatever You Say, Say ...
Lecture 21: Whatever You Say, Say ...Lecture 21: Whatever You Say, Say ...
Lecture 21: Whatever You Say, Say ...Patrick Mooney
 
Lecture 20: The Sonnet, Again
Lecture 20: The Sonnet, AgainLecture 20: The Sonnet, Again
Lecture 20: The Sonnet, AgainPatrick Mooney
 
Lecture 19: NU MISH BOOT ZUP KO
Lecture 19: NU MISH BOOT ZUP KOLecture 19: NU MISH BOOT ZUP KO
Lecture 19: NU MISH BOOT ZUP KOPatrick Mooney
 
Lecture 18: Who Speaks, and Who Answers?
Lecture 18: Who Speaks, and Who Answers?Lecture 18: Who Speaks, and Who Answers?
Lecture 18: Who Speaks, and Who Answers?Patrick Mooney
 
Lecture 17: The Re-Emergence of the Real
Lecture 17: The Re-Emergence of the RealLecture 17: The Re-Emergence of the Real
Lecture 17: The Re-Emergence of the RealPatrick Mooney
 
Lecture 16: "Convulsions, coma, miscarriage"
Lecture 16: "Convulsions, coma, miscarriage"Lecture 16: "Convulsions, coma, miscarriage"
Lecture 16: "Convulsions, coma, miscarriage"Patrick Mooney
 
Lecture 14: "To speke of wo that Is in mariage"
Lecture 14: "To speke of wo that Is in mariage"Lecture 14: "To speke of wo that Is in mariage"
Lecture 14: "To speke of wo that Is in mariage"Patrick Mooney
 
Lecture 13: Theory of … What?
Lecture 13: Theory of … What?Lecture 13: Theory of … What?
Lecture 13: Theory of … What?Patrick Mooney
 
Lecture 10: Who's Speaking, and What Can They Say?
Lecture 10: Who's Speaking, and What Can They Say?Lecture 10: Who's Speaking, and What Can They Say?
Lecture 10: Who's Speaking, and What Can They Say?Patrick Mooney
 
Lecture 09: The Things You Can't Say (in Public)
Lecture 09: The Things You Can't Say (in Public)Lecture 09: The Things You Can't Say (in Public)
Lecture 09: The Things You Can't Say (in Public)Patrick Mooney
 
Lecture 08: “two sides of the same coin”
Lecture 08: “two sides of the same coin”Lecture 08: “two sides of the same coin”
Lecture 08: “two sides of the same coin”Patrick Mooney
 
Lecture 07: Whom Can You Trust?
Lecture 07: Whom Can You Trust?Lecture 07: Whom Can You Trust?
Lecture 07: Whom Can You Trust?Patrick Mooney
 
Lecture 06: Sonnets and Odes
Lecture 06: Sonnets and OdesLecture 06: Sonnets and Odes
Lecture 06: Sonnets and OdesPatrick Mooney
 
Lecture 05: Interpretation and Bullshit
Lecture 05: Interpretation and BullshitLecture 05: Interpretation and Bullshit
Lecture 05: Interpretation and BullshitPatrick Mooney
 
Lecture 04: Dishonesty and Deception, 25 June 2015
Lecture 04: Dishonesty and Deception, 25 June 2015Lecture 04: Dishonesty and Deception, 25 June 2015
Lecture 04: Dishonesty and Deception, 25 June 2015Patrick Mooney
 
Lecture 03: A Gentle Introduction to Theory
Lecture 03: A Gentle Introduction to TheoryLecture 03: A Gentle Introduction to Theory
Lecture 03: A Gentle Introduction to TheoryPatrick Mooney
 
Lecture 02: Poetics and Poetry: An Introduction
Lecture 02: Poetics and Poetry: An IntroductionLecture 02: Poetics and Poetry: An Introduction
Lecture 02: Poetics and Poetry: An IntroductionPatrick Mooney
 
Being Sherlock Holmes: Guest Lecture, 9 January 2014
Being Sherlock Holmes: Guest Lecture, 9 January 2014Being Sherlock Holmes: Guest Lecture, 9 January 2014
Being Sherlock Holmes: Guest Lecture, 9 January 2014Patrick Mooney
 
Chris Walker's guest lecture on Waiting for Godot
Chris Walker's guest lecture on Waiting for GodotChris Walker's guest lecture on Waiting for Godot
Chris Walker's guest lecture on Waiting for GodotPatrick Mooney
 

Más de Patrick Mooney (20)

[2015 07-28] lecture 22: ... Nothing, Something
[2015 07-28] lecture 22:  ... Nothing, Something[2015 07-28] lecture 22:  ... Nothing, Something
[2015 07-28] lecture 22: ... Nothing, Something
 
Lecture 21: Whatever You Say, Say ...
Lecture 21: Whatever You Say, Say ...Lecture 21: Whatever You Say, Say ...
Lecture 21: Whatever You Say, Say ...
 
Lecture 20: The Sonnet, Again
Lecture 20: The Sonnet, AgainLecture 20: The Sonnet, Again
Lecture 20: The Sonnet, Again
 
Lecture 19: NU MISH BOOT ZUP KO
Lecture 19: NU MISH BOOT ZUP KOLecture 19: NU MISH BOOT ZUP KO
Lecture 19: NU MISH BOOT ZUP KO
 
Lecture 18: Who Speaks, and Who Answers?
Lecture 18: Who Speaks, and Who Answers?Lecture 18: Who Speaks, and Who Answers?
Lecture 18: Who Speaks, and Who Answers?
 
Lecture 17: The Re-Emergence of the Real
Lecture 17: The Re-Emergence of the RealLecture 17: The Re-Emergence of the Real
Lecture 17: The Re-Emergence of the Real
 
Lecture 16: "Convulsions, coma, miscarriage"
Lecture 16: "Convulsions, coma, miscarriage"Lecture 16: "Convulsions, coma, miscarriage"
Lecture 16: "Convulsions, coma, miscarriage"
 
Lecture 14: "To speke of wo that Is in mariage"
Lecture 14: "To speke of wo that Is in mariage"Lecture 14: "To speke of wo that Is in mariage"
Lecture 14: "To speke of wo that Is in mariage"
 
Lecture 13: Theory of … What?
Lecture 13: Theory of … What?Lecture 13: Theory of … What?
Lecture 13: Theory of … What?
 
Lecture 10: Who's Speaking, and What Can They Say?
Lecture 10: Who's Speaking, and What Can They Say?Lecture 10: Who's Speaking, and What Can They Say?
Lecture 10: Who's Speaking, and What Can They Say?
 
Lecture 09: The Things You Can't Say (in Public)
Lecture 09: The Things You Can't Say (in Public)Lecture 09: The Things You Can't Say (in Public)
Lecture 09: The Things You Can't Say (in Public)
 
Lecture 08: “two sides of the same coin”
Lecture 08: “two sides of the same coin”Lecture 08: “two sides of the same coin”
Lecture 08: “two sides of the same coin”
 
Lecture 07: Whom Can You Trust?
Lecture 07: Whom Can You Trust?Lecture 07: Whom Can You Trust?
Lecture 07: Whom Can You Trust?
 
Lecture 06: Sonnets and Odes
Lecture 06: Sonnets and OdesLecture 06: Sonnets and Odes
Lecture 06: Sonnets and Odes
 
Lecture 05: Interpretation and Bullshit
Lecture 05: Interpretation and BullshitLecture 05: Interpretation and Bullshit
Lecture 05: Interpretation and Bullshit
 
Lecture 04: Dishonesty and Deception, 25 June 2015
Lecture 04: Dishonesty and Deception, 25 June 2015Lecture 04: Dishonesty and Deception, 25 June 2015
Lecture 04: Dishonesty and Deception, 25 June 2015
 
Lecture 03: A Gentle Introduction to Theory
Lecture 03: A Gentle Introduction to TheoryLecture 03: A Gentle Introduction to Theory
Lecture 03: A Gentle Introduction to Theory
 
Lecture 02: Poetics and Poetry: An Introduction
Lecture 02: Poetics and Poetry: An IntroductionLecture 02: Poetics and Poetry: An Introduction
Lecture 02: Poetics and Poetry: An Introduction
 
Being Sherlock Holmes: Guest Lecture, 9 January 2014
Being Sherlock Holmes: Guest Lecture, 9 January 2014Being Sherlock Holmes: Guest Lecture, 9 January 2014
Being Sherlock Holmes: Guest Lecture, 9 January 2014
 
Chris Walker's guest lecture on Waiting for Godot
Chris Walker's guest lecture on Waiting for GodotChris Walker's guest lecture on Waiting for Godot
Chris Walker's guest lecture on Waiting for Godot
 

Último

Global Lehigh Strategic Initiatives (without descriptions)
Global Lehigh Strategic Initiatives (without descriptions)Global Lehigh Strategic Initiatives (without descriptions)
Global Lehigh Strategic Initiatives (without descriptions)cama23
 
ICS2208 Lecture6 Notes for SL spaces.pdf
ICS2208 Lecture6 Notes for SL spaces.pdfICS2208 Lecture6 Notes for SL spaces.pdf
ICS2208 Lecture6 Notes for SL spaces.pdfVanessa Camilleri
 
Barangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptxBarangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptxCarlos105
 
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxMULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxAnupkumar Sharma
 
Choosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for ParentsChoosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for Parentsnavabharathschool99
 
Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4JOYLYNSAMANIEGO
 
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...JojoEDelaCruz
 
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...Nguyen Thanh Tu Collection
 
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdfInclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdfTechSoup
 
Food processing presentation for bsc agriculture hons
Food processing presentation for bsc agriculture honsFood processing presentation for bsc agriculture hons
Food processing presentation for bsc agriculture honsManeerUddin
 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for BeginnersSabitha Banu
 
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfGrade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfJemuel Francisco
 
Concurrency Control in Database Management system
Concurrency Control in Database Management systemConcurrency Control in Database Management system
Concurrency Control in Database Management systemChristalin Nelson
 
Music 9 - 4th quarter - Vocal Music of the Romantic Period.pptx
Music 9 - 4th quarter - Vocal Music of the Romantic Period.pptxMusic 9 - 4th quarter - Vocal Music of the Romantic Period.pptx
Music 9 - 4th quarter - Vocal Music of the Romantic Period.pptxleah joy valeriano
 
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Celine George
 
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)lakshayb543
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxiammrhaywood
 
How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPCeline George
 
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONTHEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONHumphrey A Beña
 
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxINTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxHumphrey A Beña
 

Último (20)

Global Lehigh Strategic Initiatives (without descriptions)
Global Lehigh Strategic Initiatives (without descriptions)Global Lehigh Strategic Initiatives (without descriptions)
Global Lehigh Strategic Initiatives (without descriptions)
 
ICS2208 Lecture6 Notes for SL spaces.pdf
ICS2208 Lecture6 Notes for SL spaces.pdfICS2208 Lecture6 Notes for SL spaces.pdf
ICS2208 Lecture6 Notes for SL spaces.pdf
 
Barangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptxBarangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptx
 
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxMULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
 
Choosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for ParentsChoosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for Parents
 
Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4
 
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...
 
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
 
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdfInclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
 
Food processing presentation for bsc agriculture hons
Food processing presentation for bsc agriculture honsFood processing presentation for bsc agriculture hons
Food processing presentation for bsc agriculture hons
 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for Beginners
 
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfGrade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
 
Concurrency Control in Database Management system
Concurrency Control in Database Management systemConcurrency Control in Database Management system
Concurrency Control in Database Management system
 
Music 9 - 4th quarter - Vocal Music of the Romantic Period.pptx
Music 9 - 4th quarter - Vocal Music of the Romantic Period.pptxMusic 9 - 4th quarter - Vocal Music of the Romantic Period.pptx
Music 9 - 4th quarter - Vocal Music of the Romantic Period.pptx
 
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
 
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
 
How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERP
 
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONTHEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
 
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxINTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
 

Introduction to Web Design for Literary Theorists I: Introduction to HTML (v. 2.0)

  • 1. Introduction to Web Design For Literary Theorists First Workshop: An Introduction to (X)HTML 20 November 2014 Patrick Mooney Co-Lead TA, 2013-2015 Department of English UC Santa Barbara
  • 2. Objectives for this workshop series ● To learn the basic skills involved in building a small website for a course or section. ● To actually build such a web site, and to do a good job of it. ● To engage in practices that minimize the labor required to do so. ● To make your teaching practices more visible on the web. ● To be able to read various versions of HTML in other places on the web.
  • 3. Objectives for today’s workshop ● To learn the basics of HTML, the standard markup language for web content. ● To understand the assumptions that HTML makes about your content, and to leverage those assumptions to produce a web site that is attractive and easily “parsed” by a viewer. ● To engage in practices that will allow you to participate effectively in the later workshops in this series. ● To begin actually constructing a static section website.
  • 4. Details, details ... ● I’m going to be moving over a lot of details rather quickly today. ● You don’t need to memorize them all. – There are great references on the web, of course. – This presentation will be online in a few days. – What’s important is that you pick up major concepts and work along with them. – Come talk to me in my Lead TA office hours if you have questions! ● A collection of useful links is online at http://is.gd/todoho.
  • 5. Why have a course/section website? ● Section websites give your students a central place to look for information. – Handouts. – Notes and announcements. – Policy documents. ● Helps to make your teaching practices easily visible on the web. ● Helps to establish an identity for you on the web. – Helps to link your teaching practices to your online identity. – One of our recurring concerns throughout this series of workshops will be increasing the visibility of your web presence.
  • 6. Why not just use some other service? ● Any choice you make for web presence management has some downsides. As with everything in life, no solution is ever perfect. ● Here are some downsides to building a web site by hand with HTML: – You have to learn HTML. (Not hard, especially for literary theorists.) – You have to see your content in a non-word-processing based way. (i.e., you have to think primarily about content and structure rather than presentation.) – You have to find someone to host the content. (Not difficult, nor necessarily expensive.)
  • 7. Why not GauchoSpace? ● GauchoSpace imposes its own structure and presentation on your content. – In my personal opinion, GauchoSpace’s layout is horrible. – Many of you have interacted with students who have a hard time finding information on GauchoSpace. This is partly because GauchoSpace’s design is poorly thought out and does not leverage existing web-based information-seeking practices. ● GauchoSpace is access-controlled. – Your teaching practices are only visible to people enrolled in the course, and only while they are enrolled in the course.
  • 8. Why not some free blogging service? ● Free blogging services tie your content to a particular provider. – You can’t easily move your website from, say, Tumblr to WordPress without re-doing a lot of work. ● All free blogging services restrict what you can actually do with your HTML code. – This is a bad thing for reasons I won’t fully explain until later in the quarter. ● Blogging services impose their own information ontology onto your content.
  • 9. Why build a web site with HTML + CSS? ● It’s not that hard. ● You gain full control over how your text is presented. ● You gain full control over how your text is organized and ontologized. ● You can easily move your content elsewhere with a minimum of work if your content provider … – goes out of business – cancels the service you use – changes the terms of service on you – stops providing adequate service.
  • 10. What you won’t learn in these workshops ● Everything about every version of HTML. ● Everything about producing cutting-edge designs. ● How to produce web sites with active content. ● More than a little bit about search-engine optimization. WHICH IS TO SAY … ● Some of the information you’ll get here is partial or moderately simplified (but it’s honest and, I think, sufficient). ● You’re not going to walk out of here with the skills to be a professional web designer. ● However, you will walk out of here knowing enough to present your content to your students – and the world – in a way that reflects positively on you.
  • 11. How the Web Works: Quick Refresher ● You type an address (URL) into your browser’s address bar. ● Your browser interprets the address to discover which server (another computer on the Internet) holds the requested document (“web page”). ● The document is fetched from that server. ● Any supporting documents are also fetched and interpreted. ● Your browser interprets and displays (“renders”) the document in a way that is compliant with standards. ● The user then (hopefully) reads and/or otherwise interacts with the document.
  • 12. ● Your web site will consist of multiple HTML files and any other supporting documents. ● Any images (videos, audio, other media) that are needed for your web site are not part of the HTML file itself, but separate documents.
  • 13. So, HTML ... ● stands for “Hypertext Markup Language.” ● is the standard way of describing the structure of textual documents on the web. – HTML is not a “programming language.” There are no commands. There are no variables. It just describes the structure of a text. ● does not give you complete control over every tiny aspect of how a document appears in the user’s browser. ● can be read and understood by every piece of software that deals with textual documents on the web. ● Is a standard administered and maintained by the World Wide Web Consortium (W3C).
  • 14. Some HTML coding examples ● HTML consists of plain text marked up with tags that indicate the structure of the text that is being marked up. ● There are several dozen legitimate tags (many of which you will never use). Each begins with < (the less-than sign) and ends with > (the greater-than sign). ● Tags can have attributes (characteristics). Certain attributes for certain tags are mandatory. <img src="kitten.jpeg" width="192" height="108">
  • 15. Tags in your document ● Each tag that you open must be closed before the end of the document. ● Technically, tags should be closed in the reverse order in which they were opened. Correct: <i><b>Example</b></i> Incorrect: <i><b>Example</i></b> ● Some tags (those that are not containers for textual content) can be self-closed: <img src="kitten.jpeg" width="192" height="108" />
  • 16. A quick reminder ● The texts that you work with, even in non-electronic documents, are already “marked up” in various ways. – paragraphs, pagination, chapter divisions, emphasis, punctuation – are all (in a sense) paratextual elements that give you hermeneutic clues. – All you’re doing with your HTML markup is making (a certain set of) hermeneutic clues explicit. “Every page, even a blank page, even a page of George W. Bush’s ignorant and vapid prose, is n-dimensional.” — Jerome McGann, Radiant Textuality: Literature After the World Wide Web (p. 184; ch. 6)
  • 17. A minimally acceptable XHTML document ● The <!DOCTYPE> declaration is (to you) a string of gibberish whose purpose is to tell the browser what flavor of HTML you’re using. ● The xmlns= attribute on the <html> tag tells XML parsers how to parse the HTML. ● You can just look up these values, or (even better) use existing documents as templates.
  • 18. Some Useful Block-Level Tags <blockquote></blockquote> – you know what this does, right? <h1></h1> – marks a top-level heading <h2></h2> – marks a subheading <h6></h6> – marks a sub-sub-sub-sub-subheading <p></p> – marks up paragraphs <ul></ul> – unordered lists (bullet points) <ol></ol> – ordered lists (numbers, letters) <li></li> – a list item
  • 19. Some Useful Inline Tags <abbr title="Modern Language Association">MLA</abbr> – an abbreviation <br /> – a line break. <cite></cite> – marks a citation. <code></code> – marks up computer code. <em></em> – marks text that is emphasized. <img src="a URL" alt="some text" /> – embeds an image. <strong></strong> – marks text that is very strongly emphasized. <q></q> – marks a quotation.
  • 20. The <img> tag <img src="fakebeard.jpg" width="480" height="640" alt="a man with a fake beard" /> <img src="http://i.imgur.com/HndKeBY.jpg" width="480" height="640" alt="a man with a fake beard" /> ● The src attribute is the location (URL) of the image itself. ● The width and height attributes (measured in pixels) are hints to help the browser render the page without having to wait for the image to download. ● The (mandatory) alt attribute tells browsers for visually impaired users what to say instead of displaying the picture. ● Note that, because it’s not a container for text, the <img> tag is self-closed.
  • 21. Some image considerations ● The fewer images you use, the more quickly your web page will render, because each image has to be fetched separately. – You can ameliorate the rendering delay by using the width and height attributes. ● Using a bunch of spurious damn images just because you feel like using a bunch of spurious damn images is often considered to be unprofessional, or at least poor design. – Keep the focus on what matters. ● Use the alt attribute to provide cues for visually impaired users.
  • 22. Some image considerations ● Image file sizes will often be much larger than the size of the HTML document that refers to them. Hosting them elsewhere than on your own server can save you money. – However, if you’re using images that are hosted on a site other than your own, make very sure that that’s OK with the site from which you’re linking them. ● A rule of thumb: use the JPEG format for photographs, and PNG for line-drawings and other non-photographic images.
  • 23. The <a> tag ● Creates links: <p><a href="http://gauchospace.ucsb.edu">GauchoSpace login page</a></p> ● Creates anchor points inside a document to which you can link: <a name="no-very-late-papers" /> <h2><a name="no-very-late-papers">Late paper policy</a></h2> ● It’s increasingly common to create anchor points with the id attribute (on any tag) <h2 id="no-very-late-papers">Late paper policy</h2>
  • 24. ● A link to an anchor point might look like this: <p>Details are spelled out in my <a href="http://patrickbrianmooney.nfshost.com/~patrick/ta /s14/eng133so/section-guidelines.html#no-very-late-papers"> late paper policy</a>.</p> – Links to anchor points are constructed the same way whether the anchor point is crated with <a name="something"> or <tag id="something">.
  • 25. Different ways to specify URLs ● You can always specify a full URL any time a URL is required (with <a>, <img>, etc.). <a href="http://gauchospace.ucsb.edu">GauchoSpac e login page</a> <img src="http://i.imgur.com/HndKeBY.jpg" width="480" height="640" alt="a man with a fake beard" /> ● However, this is cumbersome if you have to do it all the time, so there are also ways to specify URLs relative to the URL of the document doing the specifying.
  • 26. Partially specified URLs There are several possibilities, each relative to the URL of the document containing the partial URL. If the base URL of a document is, say, http://patrickbrianmooney.nfshost.com/~patrick/ta/index.html … ● Not specifying any folders: <img src="bulletpoint.png" /> means “the file ‘bulletpoint.png’ in the same folder as the document referring to it”: http://patrickbrianmooney.nfshost.com/~patrick/ta/bulletpoint.png
  • 27. If the base URL of a document is, say, http://patrickbrianmooney.nfshost.com/~patrick/ta/index.html … ● In a sub-folder of the current folder: <a href="s14/eng133so/index.html"> means “the file ‘index.html’ in the folder ‘eng133so,’ which is in the folder ‘s14,’ which is in the current folder”: http://patrickbrianmooney.nfshost.com/~patrick/ta/s14/ eng133so/index.html – Note that the URL does not begin with a slash ● In the folder above the current folder: <a href="../personal.html"> means “the file ‘personal.html’ in the folder above the current folder”: http://patrickbrianmooney.nfshost.com/~patrick/personal.html
  • 28. If the base URL of a document is, say, http://patrickbrianmooney.nfshost.com/~patrick/ta/index.html … ● Full path from the root (top-level) folder: <a href="/~patrick/personal.html"> means “the file ‘personal.html’ in the folder “~patrick,” which is in the top-level folder”: http://patrickbrianmooney.nfshost.com/~patrick/personal.html – Note that the URL does begin with a slash ● The fact that you can refer to other documents in these ways is a good reason to have a sensible file system layout that you can remember.
  • 29. Tables for presenting information Begins the table Table heading A table row A table row Ends the table <table> <tr><th>Name</th><th>Grade</th></tr> <tr><td>John Smith</td><td>B+</td></tr> <tr><td>Ana Garcia</td><td>A-</td></tr> </table> ● A table consists of individual table rows, <tr>, (and should have a table header); each row contains individual table data “cells” (<td></td>).
  • 30. ● In the 90s, it was common to enclose entire documents in a table to control document layout. Don’t do this. – Tables have a semantic meaning. – Doing this causes problems for screen readers, as well as for other types of software that processes web pages other than “standard web browsers.” – You should use CSS for controlling page layout. We’ll talk about this next time.
  • 31. Special characters in HTML documents ● Begin with an ampersand; end with a semicolon. – Replace reserved characters that have special meanings: &lt; means the less-than sign: < &gt; means the greater-than sign: > &amp; is the ampersand: & &quot; is the (non-smart) double-quote mark: " – Provide a convenient way to enter characters that you can’t easily type: &eacute; is a lower-case E with an acute accent: é &Eacute; is an upper-case E with acute accent: É &pound; is the British currency symbol: £ &copy; is the copyright sign: © – Case matters.
  • 32. Tags you’ll see, but shouldn’t use <b></b> – bold text <big></big>, <small></small> – to change text size <blink></blink> – is primarily used to ensure that people hate you. <center></center> – for centering text <font></font> – for font size and face <i></i> – italic text <sub></sub>, <sup></sup> – subscript, superscript. <u></u> – underlined text
  • 33. Good Semantic XHTML Practices (some are mandatory) ● Code follows semantic rules and is formally valid. ● Tags and attributes are entirely in lowercase. ● Every tag is either self-closed or closed after the end of its content occurs. – Reminder: tags are closed in the reverse order in which they were opened. ● Attribute values are enclosed in quotation marks. ● Code is easily readable by you so that changes are not painful to make.
  • 34. ● Because the rendering of HTML collapses whitespace (spaces, tabs, carriage returns), you can put in as many spaces (tabs, carriage returns) as you want to make your meaning and structure clear to yourself – without affecting how your document looks when the user’s browser renders it. ● Describes the structure of the text, rather than attempting to control appearance. – To put it another way, you should separate appearance from content. – We’ll talk in detail about controlling appearance at our next workshop.
  • 35. Attributes for any tag ● <tag id="something"> – Attaches a unique ID to an individual tag for some purpose of your own. ● <tag class="something something_else"> – Indicates that the tag belongs to one or more groups that you yourself designate for some purpose of your own. ● <tag style="some valid styling information"> – This is a poor overall strategy for styling your text, for reasons we’ll talk about at our next meeting, but not a bad way to see quickly how things look. Note that there is no <tag> tag.
  • 36. Tags that do nothing (that’s visible) ● <span></span> – marks an inline group of text for some purpose of your own. <p>I thought that <span class="book-title">1Q84</span> was a very disappointing novel.</p> ● <div></div> – marks a block-level group of text for some purposes of your own. <div class="document-header"> <p>I was very disappointed by <cite>Infinite Jest</cite>.</p> <p>However, I quite enjoyed <cite>House of Leaves</cite>.</p> </div> ● We’ll talk about these extensively next time.
  • 37. A few words about validity & standards compliance ● You can get away with writing bad HTML, and it may look OK when rendered. However: – Invalid HTML renders differently in different browsers. It’s also very hard for machines to parse in other ways. – HTML that is presentational rather than semantic involves vastly more effort to maintain. – Presentational, non-semantic HTML limits your ability to make your web pages intelligible to machines instead of people. ● Google search ● Screen readers for the visually impaired ● Other web applications …
  • 38. Making sure it works ● Write good HTML in the first place. – Make it intelligible to you. – Semantic, not presentational. – Use a text editor that helps you to check validity with features like syntax highlighting. ● Check formal validity with the W3C’s validator. – You can also use it to clean up your code. ● Test on at least two different browsers. – Ideally, you should also test it on several devices: ● Your phone, different operating systems, etc.
  • 39. Intro to web information ontology ● Don’t try to put everything on one page. Break information into multiple documents, each of which is … – More or less complete in itself. – Linked to other, related documents. ● And linked back to your home page. ● Use good journalistic writing practices. – Most important information first in (almost) any document. – Crucial information is “above the fold.” – Your semantic markup helps to show the structure of your document to the viewer.
  • 40. ● Organize your files in a series of folders that makes sense to you and provides an epistemological indication in the folder path of how the information is categorized. – Remember that your folder path will become part of the URL when you upload your site. – Make each subfolder increasingly specific in some sense. ● Include an index.html file in each folder. – Generally, a good practice here is to make each index.html file a menu that provides an overview of what’s in that folder, or in the subfolders it contains.
  • 41. A suggestion … ● You won’t really have learned anything today unless you apply these skills in the near future. – Take your existing section guidelines handout and produce an HTML version. – Start setting up a section website. You can take one of mine as a model, if you’d like. – Produce HTML versions of any other documents that you have the time and inclination to produce. – Run them through the W3C’s validator and resolve any problems. – Come talk to me in my office hours if you hit any snags!
  • 42. Building a minimalist personal web site ● You should have a main page with a blurb about who you are, plus links to major other information on the site. (Having some color on it somewhere is often thought to be a good idea.) ● Good pages to have might include: – Web collections you’ve built for students. – Your CV. – Links to you on other places on the web. ● Linking back to your web page from your LinkedIn, Facebook, academia.edu, Twitter, Flickr, Google+, and other profiles is a smart move. – A “personal info” page (if done thoughtfully and tastefully).
  • 43. Where we’re going next (or, let’s talk about scheduling) ● When’s a good time to have a follow-up workshop? Next week? ● Our second workshop (winter quarter) will introduce CSS, or Cascading Style Sheets. – This will serve as an introduction to how you control the presentation of semantically encoded HTML. – We will also talk about hosting your content once you have some content to host. ● Our third workshop (spring quarter) will present some additional, related topics: – Making your content meaningful to search engines and other text-parsing software. – Preventing search engines from indexing your content. – Google Scholar’s article-inclusion guidelines.