+ All Categories
Home > Technology > Railsbridge intro

Railsbridge intro

Date post: 19-Jul-2015
Category:
Upload: p4geoff
View: 49 times
Download: 0 times
Share this document with a friend
Popular Tags:
23
Welcome to Railsbridge...
Transcript
Page 1: Railsbridge intro

Welcome to Railsbridge...

Page 2: Railsbridge intro

Victoria!

Page 3: Railsbridge intro

Thanks to

Page 4: Railsbridge intro

In Particular...

Tobias

And

Jianping

Page 5: Railsbridge intro

Thanks To

Page 6: Railsbridge intro

In particular....

StewartAnd

GeoffAnd

DJ

Page 7: Railsbridge intro

Thanks to our volunteers

AaronAnd

Sophia

Page 8: Railsbridge intro

Thanks to

Page 9: Railsbridge intro

Why Railsbridge?

Let's change the ratio

Page 10: Railsbridge intro

Sarah Sheehan's CupcakesPhoto credit: @sarahesheehan

Page 11: Railsbridge intro

Air, Food, Water

● The front doors and Elevator should be unlocked all day

● There are bathrooms in the hallway. The ladies' room is unlocked :) The men's room requires a key. Rebeca has the key.

● We can work anywhere in the office that is comfortable. Please leave any personal items in place.

Page 12: Railsbridge intro

Air, Food, Water

● Rebeca's mobile number is 250-415-1927.

● The WiFi is called xMguest. The password is

xmattersnow

Page 13: Railsbridge intro

Thanks to

YOU.

Let's Learn some front-end stuff.

Page 14: Railsbridge intro

HTML

It is what every web page is made from.

To see what a page is made of, use “View Source”.

For example...

Page 15: Railsbridge intro
Page 16: Railsbridge intro

Basic Tags<!DOCTYPE html>

(see diveintohtml5.info/semantics.html for explanation)

<HTML><HEAD>

---stuff like the title of the page and meta tags---

</HEAD><BODY>

---the contents of the page---<BODY></HTML>

Page 17: Railsbridge intro

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

<a href=”facebook.com”>This is a link to facebook</a>

<img src=”facebook.com/logo.gif”/> <-- That displays an image that is

stored on facebook.com<em>This is a bit of text that is

emphasized</em><i>This is a bit of text that will

be italicized...</i>But we might not want to do that...

Page 18: Railsbridge intro

How HTML, CSS and JavaScript work together

HTMLmarks the content up into different structural types, like paragraphs, blocks, lists, images, tables, forms, comments etc.CSStells the browser how each type of element should be displayed, which may vary for different media (like screen, print or handheld device)JavaScripttells the browser how to change the web page in response to events that happen (like clicking on something, or changing the value in a form input)

From webdesignfromscratch.com

Page 19: Railsbridge intro

Semantic markup

Using HTML to enforce the meaning of the content of the page and not

the details of the visual display

<em> versus <i>

Page 20: Railsbridge intro

Browser compatibility

Cross-browser compatibility is the bane of a web developer's existence.

Page 21: Railsbridge intro

Developer tools/inspector

Page 22: Railsbridge intro

HTML 5

From wsj.com

Page 23: Railsbridge intro

You should read


Recommended