basics and design aesthetics · basics and design aesthetics these training materials have been...

16
<html> <html> Basics and Design Aesthetics Basics and Design Aesthetics These training materials have been prepared by Aspiration These training materials have been prepared by Aspiration These materials are distributed under a Creative Commons License: Attribution-ShareAlike 2.5 These materials are distributed under a Creative Commons License: Attribution-ShareAlike 2.5

Upload: others

Post on 22-Sep-2020

3 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Basics and Design Aesthetics · Basics and Design Aesthetics These training materials have been prepared by Aspiration These materials are distributed under a Creative Commons License:

<html><html>Basics and Design AestheticsBasics and Design Aesthetics

These training materials have been prepared by AspirationThese training materials have been prepared by Aspiration

These materials are distributed under a Creative Commons License: Attribution-ShareAlike 2.5These materials are distributed under a Creative Commons License: Attribution-ShareAlike 2.5

Page 2: Basics and Design Aesthetics · Basics and Design Aesthetics These training materials have been prepared by Aspiration These materials are distributed under a Creative Commons License:

Session FacilitatorsSession Facilitators

Juan C. SanchezJuan C. Sanchez

[email protected]@aspirationtech.org

Jordan RamosJordan Ramos

[email protected]@aspiraiontech.org

Page 3: Basics and Design Aesthetics · Basics and Design Aesthetics These training materials have been prepared by Aspiration These materials are distributed under a Creative Commons License:

IntroductionsIntroductions

What is your name?What is your name?

What organization are you coming from?What organization are you coming from?

What has been your experience with “html?”What has been your experience with “html?”

Page 4: Basics and Design Aesthetics · Basics and Design Aesthetics These training materials have been prepared by Aspiration These materials are distributed under a Creative Commons License:

What people think it isWhat people think it is

Code! Ahhh!!

Page 5: Basics and Design Aesthetics · Basics and Design Aesthetics These training materials have been prepared by Aspiration These materials are distributed under a Creative Commons License:

What is html?What is html?

Page 6: Basics and Design Aesthetics · Basics and Design Aesthetics These training materials have been prepared by Aspiration These materials are distributed under a Creative Commons License:

HTMLHTML

Hyper Text Markup LanguageHyper Text Markup Language

Hyper text is plain and simple textHyper text is plain and simple text

• It is not linearIt is not linear

Page 7: Basics and Design Aesthetics · Basics and Design Aesthetics These training materials have been prepared by Aspiration These materials are distributed under a Creative Commons License:

What it really isWhat it really is

html is a simple “markup” languagehtml is a simple “markup” language

This markup language is used to describe This markup language is used to describe

documents to web browsersdocuments to web browsers

These markups are called “tags”These markups are called “tags”

Page 8: Basics and Design Aesthetics · Basics and Design Aesthetics These training materials have been prepared by Aspiration These materials are distributed under a Creative Commons License:

TagsTags

Tag convention:Tag convention:

<tagname> <tagname> content content </tagname></tagname>

Html tags are keywords (tag names) surrounded Html tags are keywords (tag names) surrounded

by angle bracketsby angle brackets

Usually come in pairsUsually come in pairs

First tag is called a First tag is called a start tagstart tag, second tag is called , second tag is called

the end tagthe end tag

Page 9: Basics and Design Aesthetics · Basics and Design Aesthetics These training materials have been prepared by Aspiration These materials are distributed under a Creative Commons License:

ElementsElements

Tags and elements are often used to describe Tags and elements are often used to describe

the same thingthe same thing

If we are getting technical:If we are getting technical:

An element is anything that falls between the An element is anything that falls between the

tags, including the tags themselvestags, including the tags themselves

Page 10: Basics and Design Aesthetics · Basics and Design Aesthetics These training materials have been prepared by Aspiration These materials are distributed under a Creative Commons License:

HTML Page StructureHTML Page Structure

<html> (describes the web page)<html> (describes the web page)

<head> (<head> (

</head></head>

<body> (The visible page content)<body> (The visible page content)

</body></body>

<html><html>

Page 11: Basics and Design Aesthetics · Basics and Design Aesthetics These training materials have been prepared by Aspiration These materials are distributed under a Creative Commons License:

ParagraphsParagraphs

html documents are divided into paragraphshtml documents are divided into paragraphs

Paragraph convention:Paragraph convention:

<p> This is a paragraph </p><p> This is a paragraph </p>

Page 12: Basics and Design Aesthetics · Basics and Design Aesthetics These training materials have been prepared by Aspiration These materials are distributed under a Creative Commons License:

HeadingsHeadingsHeadings are important in html documentsHeadings are important in html documents

Search engines will use your heading to index the Search engines will use your heading to index the

structure and content of your web pages.structure and content of your web pages.

Headings convention:Headings convention:

<h1>This is a heading </h1><h1>This is a heading </h1>

They are defined from 1-6They are defined from 1-6

<h1> defines the most important heading while <h1> defines the most important heading while

<h6> dines the least important heading<h6> dines the least important heading

Page 13: Basics and Design Aesthetics · Basics and Design Aesthetics These training materials have been prepared by Aspiration These materials are distributed under a Creative Commons License:

LinksLinks

Links convention:Links convention:

<a href=”url”>Whatever you wish to say</a><a href=”url”>Whatever you wish to say</a>

Page 14: Basics and Design Aesthetics · Basics and Design Aesthetics These training materials have been prepared by Aspiration These materials are distributed under a Creative Commons License:

ImagesImages

Image convention:Image convention:

<img src =”url or location”><img src =”url or location”>

Page 15: Basics and Design Aesthetics · Basics and Design Aesthetics These training materials have been prepared by Aspiration These materials are distributed under a Creative Commons License:

End Of SessionEnd Of Session

Questions?Questions?

CommentsComments

Page 16: Basics and Design Aesthetics · Basics and Design Aesthetics These training materials have been prepared by Aspiration These materials are distributed under a Creative Commons License:

Bad DesignsBad Designs

http://code.divshot.com/geo-bootstrap/http://code.divshot.com/geo-bootstrap/