Top Banner
Introducing HTML Skills: none IT concepts: markup, HTML tag, presentation vs content, HTTP protocol, historical context This work is licensed under a Creative Commons Attribution- Noncommercial-Share Alike 3.0 License.
16

Introducing HTML Skills: none IT concepts: markup, HTML tag, presentation vs content, HTTP protocol, historical context This work is licensed under a Creative.

Dec 20, 2015

Download

Documents

Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Introducing HTML Skills: none IT concepts: markup, HTML tag, presentation vs content, HTTP protocol, historical context This work is licensed under a Creative.

Introducing HTML

Skills: none

IT concepts: markup, HTML tag, presentation vs content, HTTP protocol, historical context

This work is licensed under a Creative Commons Attribution-Noncommercial-Share Alike 3.0 License.

Page 2: Introducing HTML Skills: none IT concepts: markup, HTML tag, presentation vs content, HTTP protocol, historical context This work is licensed under a Creative.

Where does this topic fit?

• Internet concepts– Applications– Technology– Implications

• Internet skills– Application development– Content creation

Page 3: Introducing HTML Skills: none IT concepts: markup, HTML tag, presentation vs content, HTTP protocol, historical context This work is licensed under a Creative.

HTML – hypertext markup language

Hypertext

Markup

Page 4: Introducing HTML Skills: none IT concepts: markup, HTML tag, presentation vs content, HTTP protocol, historical context This work is licensed under a Creative.

HTML tags control presentation, not content

Page 5: Introducing HTML Skills: none IT concepts: markup, HTML tag, presentation vs content, HTTP protocol, historical context This work is licensed under a Creative.

Tag Effect

<h1> … </h1> large heading

<h2> … </h2> smaller heading

<p> … </p> paragraph

<b> … </b> bold text

<i> … </i> italicized text

<u> … </u> underlined text

Examples of HTML tags

Note that each of these has a start <> and an end </> element.

Page 6: Introducing HTML Skills: none IT concepts: markup, HTML tag, presentation vs content, HTTP protocol, historical context This work is licensed under a Creative.

Tag Effect

<hr /> draw a horizontal line (a rule) across the window

<br /> force a break in the line being typed

Examples of HTML tags

These do not require both a start <> and an end </> element.

The trailing “ /” is optional in HTML 4, but will be mandatory in HTML 5.

Page 7: Introducing HTML Skills: none IT concepts: markup, HTML tag, presentation vs content, HTTP protocol, historical context This work is licensed under a Creative.

http://www.w3schools.com/Html/

W3schools -- all you need to learn HTML

make changes on the left side

see the result on the right side

Page 8: Introducing HTML Skills: none IT concepts: markup, HTML tag, presentation vs content, HTTP protocol, historical context This work is licensed under a Creative.
Page 9: Introducing HTML Skills: none IT concepts: markup, HTML tag, presentation vs content, HTTP protocol, historical context This work is licensed under a Creative.

HTTP – the rules defining the Web client-server “conversation”

Page 10: Introducing HTML Skills: none IT concepts: markup, HTML tag, presentation vs content, HTTP protocol, historical context This work is licensed under a Creative.

The idea of hypertext preceded the Web

Vannevar Bush

Doug Engelbart

Page 11: Introducing HTML Skills: none IT concepts: markup, HTML tag, presentation vs content, HTTP protocol, historical context This work is licensed under a Creative.

Gopher

Page 12: Introducing HTML Skills: none IT concepts: markup, HTML tag, presentation vs content, HTTP protocol, historical context This work is licensed under a Creative.

Tim Berners-Lee invented HTML and HTTP

Tim Berners-Lee was knighted by Queen Elizabeth for his invention of the World Wide Web. He is shown here, along with the first picture posted on the Web and a screen shot from an early version of his Web browser.

Page 13: Introducing HTML Skills: none IT concepts: markup, HTML tag, presentation vs content, HTTP protocol, historical context This work is licensed under a Creative.

A few questions

Page 14: Introducing HTML Skills: none IT concepts: markup, HTML tag, presentation vs content, HTTP protocol, historical context This work is licensed under a Creative.

We introduced several HTML tags in this presentation. Without looking back, do you recall what they were?

Do you recall what each does?

Page 15: Introducing HTML Skills: none IT concepts: markup, HTML tag, presentation vs content, HTTP protocol, historical context This work is licensed under a Creative.

What do you suppose would happen if you accidentally left the closing tag </b> off of a bold-face portion of text?

How would you make some text both bold face and italicized?

What are some of the other tags shown at w3schools, and what are their functions?

Page 16: Introducing HTML Skills: none IT concepts: markup, HTML tag, presentation vs content, HTTP protocol, historical context This work is licensed under a Creative.

HTML – hypertext markup language

Skills: none

IT concepts: markup, HTML tag, presentation vs content, HTTP protocol, historical context

This work is licensed under a Creative Commons Attribution-Noncommercial-Share Alike 3.0 License.