Writing for the Web
Max Kemman
University of Luxembourg September 27, 2016
Writing for the Web Max Kemman University of Luxembourg September - - PowerPoint PPT Presentation
Writing for the Web Max Kemman University of Luxembourg September 27, 2016 Doing Digital History: Introduction to Tools and Technology Today Recap HTML The basics Beyond mere text Structuring the document
University of Luxembourg September 27, 2016
Wordpress.org Self-hosted Full CMS Extensive customization, requires maintenance Wordpress.com Hosted by WordPress Full CMS Limited customization, no maintenance Blogger Hosted by Google Limited customization, no maintenance Medium Hosted by Medium Great for long-reads No customization, no maintenance Paragraph-level comments Tumblr Hosted by Yahoo Micro-blog, more social network Little customization, no maintenance Twitter Hosted by Twitter Micro-blog, social network Little customization, no maintenance Limited to 140 characters per post
For example, this is just text, but html and title are shown differently as HTML elements
<!doctype html> html html
<!doctype html> html head head body body html
<!doctype html> html head title This document now has a title title head body body html
html head title This document now has a title title head body h1 The largest header, useful for chapter titles h1 p A paragraph where you can write all you want, in i italic i or b bold b . p p Another paragraph where you can write br all you want. p body html
<!doctype html> html head title This document now has a title title head body h1 The largest header, useful for chapter titles h1 p A paragraph where you can write all you want, in i italic i or b bold b . p p Another paragraph where you can write br all you want. p body html
A paragraph where you can write all you want, in italic or bold. Another paragraph where you can write all you want.
<!doctype html> html head title This document now has a title title head body h1 The largest header, useful for chapter titles h1 p A paragraph where you can write all you want, in i italic i or b bold b . p p Another paragraph where you can write br all you want. p body html
html head title This document now has a title title head body a href http://isitfridayyet.net/ This is the text people click a br a href http://isitfridayyet.net/ target _blank This is the text people click to a new tab a body html
<!doctype html> html head title This document now has a title title head body a href http://isitfridayyet.net/ This is the text people click a br a href http://isitfridayyet.net/ target _blank This is the text people click to a new tab a body html
This is the text people click This is the text people click to a new tab
html head title This document now has a title title head body img src image.jpg alt image name width 300 height 300 body html
<!doctype html> html head title This document now has a title title head body img src image.jpg alt image name width 300 height 300 body html
a href http://www.anotherwebsite.com/ img src image.jpg alt image name width 100 height 100 a
<!doctype html> html head title This document now has a title title h1 The largest header, useful for chapter titles h1 head p A paragraph where you can write all you want, in i italic i or b bold b .</p p Another paragraph where you can write br all you want. p <a href=http://isitfridayyet.net/>This is the text people click a br <img="image.jpg" alt="image name" width="300" height="300"> body
<!doctype html> html head title This document now has a title title head body h1 The largest header, useful for chapter titles h1 p A paragraph where you can write all you want, in i italic i or b bold b . p p Another paragraph where you can write br all you want. p a href http://isitfridayyet.net/ This is the text people click a br img src image.jpg alt image name width 300 height 300 body html
html head title This document now has a title title head body ul li An item here li li Another item here li ul body html
<!doctype html> html head title This document now has a title title head body ul li An item here ul li A nested item li ul li li Another item here li ul body html
<!doctype html> html head title This document now has a title title head body ul li An item here ul li A nested item li ul li li Another item here li ul body html
An item here A nested item Another item here
html head title This document now has a title title head body table border 1 tr td Upperleft item td td Upperright item td tr tr td Lowerleft item td td Lowerright item td tr table body html
<!doctype html> html head title This document now has a title title head body table border 1 tr td Upperleft item td td Upperright item td tr tr td Lowerleft item td td Lowerright item td tr table body html
Upperleft item Upperright item Lowerleft item Lowerright item
<!doctype html> html head title This document now has a title title head body h1 The largest header, useful for chapter titles h1 p A paragraph where you can write all you want, in i italic i or b bold b . p <!-- This is a comment and will not be shown by the browser--> p Another paragraph where you can write br all you want. p body html
The largest header, useful for chapter titles
A paragraph where you can write all you want, in italic or bold.
A subsection's header
Another paragraph where you can write This is the text people click to a new tab
<!doctype html> html head title This document now has a title title link rel stylesheet type text/css href styling.css head body body html
body background-color #425e5f
body background-color #425e5f
The largest header, useful for chapter titles
A paragraph where you can write all you want, in italic or bold.
A subsection's header
Another paragraph where you can write This is the text people click to a new tab
The largest header, useful for chapter titles
A paragraph where you can write all you want, in italic or bold.
A subsection's header
Another paragraph where you can write This is the text people click to a new tab
body background-color #425e5f h1 font-size 3em h2, h3 font-size 2em
The largest header, useful for chapter titles
A paragraph where you can write all you want, in italic or bold.
A subsection's header
Another paragraph where you can write This is the text people click to a new tab
A paragraph where you can write all you want, in italic or bold.
A subsection's header
Another paragraph where you can write This is the text people click to a new tab
body background-color #425e5f color #ffffff h1 font-size 3em h2, h3 font-size 2em
A paragraph where you can write all you want, in italic or bold.
A subsection's header
Another paragraph where you can write This is the text people click to a new tab
A paragraph where you can write all you want, in italic or bold.
A subsection's header
Another paragraph where you can write This is the text people click to a new tab
body background-color #425e5f color #ffffff h1 font-size 3em h2, h3 font-size 2em a color #FF0000
A paragraph where you can write all you want, in italic or bold.
A subsection's header
Another paragraph where you can write This is the text people click to a new tab
A paragraph where you can write all you want, in italic or bold.
A subsection's header
Another paragraph where you can write This is the text people click to a new tab