web design class: html fundamentals

15
Web Design Class: HTML Fundamentals Oleg Kagan [email protected]

Upload: lifeinoleg

Post on 27-May-2015

274 views

Category:

Education


0 download

DESCRIPTION

On January 24th, 2014 I taught the first version of this HTML Fundamentals course at the West Hollywood Library. The focus was on the essential knowledge one must have in order to code up a simple HTML page. I started with an introduction, followed by a rundown of the HTML tags, in which I toggled the presentation w/ Notepad and a browser to demonstrate how to the tags worked on an actual page about my fictional cat, Fluffy. After the demonstration I passed out a quiz, and then we went over the answers and tackled other questions. Based on this class, there are a few changes I will be making to the class and the presentation, so consider this v0.1 of this deck.

TRANSCRIPT

Page 1: Web Design Class: HTML Fundamentals

Web Design Class: HTML FundamentalsOleg [email protected]

Page 2: Web Design Class: HTML Fundamentals

Schedule

➢ Introduction to HTML

➢ The essentials

➢ Survey Quiz

➢ Questions/Answers

➢ You Build a Page

Page 3: Web Design Class: HTML Fundamentals

The World Wide Web!

(cc) Hanan Cohen via Flickr

(cc) mayhem chaos via Flickr

Page 4: Web Design Class: HTML Fundamentals

HyperText Markup Language

HTML is a markup languageIt tells the browser what stuff is.

(cc) liamngls via Flickr

Page 5: Web Design Class: HTML Fundamentals

Tag, You're It!

<p>The browser doesn't know what anything is without tags.</p>(a single tag closes itself <br/>)

Page 6: Web Design Class: HTML Fundamentals

Basic Page Structure<!DOCTYPE html><html><head><title>Fluffy Rules!</title>

</head><body>

</body>

</html>

Page 7: Web Design Class: HTML Fundamentals

Headers & Line

<h1>Fluffy's Page</h1>

<h2>Fluffy's Page</h2>

<h3>Fluffy's Page</h3><h4>Fluffy's Page</h4><h5>Fluffy's Page</h5>

<hr />

Page 8: Web Design Class: HTML Fundamentals

Paragraphs

<p>Hello! Welcome to my website. I am

Fluffy, Oleg's fictional cat. I enjoy sleeping on

the window sill, the sound of can openers, and

fear in the eyes of dogs. My online home is for

all of the things I love. Meow!</p>

Page 9: Web Design Class: HTML Fundamentals

Ordered Lists

<ol><li>Tuna</li><li>Tuna</li><li>Dry Food</li>

</ol>

Page 10: Web Design Class: HTML Fundamentals

UnOrdered Lists

<ul><li>Link 1</li><li>Link 2</li><li>Link 3</li>

</ul>

Page 11: Web Design Class: HTML Fundamentals

Links

<a></a><a>Cat Fancy</a><a href="[web address]">Cat Fancy</a><a href="www.catchannel.com/cat-fancy">Cat Fancy</a>

Cat Fancy

Page 12: Web Design Class: HTML Fundamentals

Images<img src="http://karenswhimsy.com/public-domain-images/cat-silhouette/images/cat-silhouette-3.jpg" />

Page 13: Web Design Class: HTML Fundamentals

Bolds, Italics, and <br/>

<p>Hello! Welcome to my website. I am

<b>Fluffy</b>, Oleg's fictional cat. I enjoy sleeping

on the window sill, the sound of can openers, and

fear in the eyes of <em>dogs</em>. <br/>

My online home is for all of the things I love. Meow!

</p>

Page 14: Web Design Class: HTML Fundamentals

That's All, Folks!

<!DOCTYPE html><html><head><title><body><h1>-<h5><hr/><p>

<ol><li><ul><a href=""></a><img src=""><b> or <strong><i> or <em><br/>

Page 15: Web Design Class: HTML Fundamentals

Survey QuizFinish the survey quiz quickly and we'll review it and answer ALL THE QUESTIONS afterward.

I am not scared of the quiz!