73
How to Create a Successful Web App & Cloud Based Startup in Armenia -Todd Fabacher

How to Create a Successful Web App & Cloud Based Startup in Armenia

  • View
    622

  • Download
    7

Embed Size (px)

DESCRIPTION

It all starts with an Idea. Take your idea and learn how to create your own Cloud Based Startup in Armenia. Learn the technology and paths to needed to having a profitable company.

Citation preview

Page 1: How to Create a Successful Web App & Cloud Based Startup in Armenia

How to Create a Successful Web App & Cloud Based Startup in Armenia

-Todd Fabacher

Page 2: How to Create a Successful Web App & Cloud Based Startup in Armenia

Multi Platform

Page 3: How to Create a Successful Web App & Cloud Based Startup in Armenia

We live in a Multi Device world

Page 4: How to Create a Successful Web App & Cloud Based Startup in Armenia

What Does that mean for me?

Page 5: How to Create a Successful Web App & Cloud Based Startup in Armenia

Responsive Design

Page 6: How to Create a Successful Web App & Cloud Based Startup in Armenia

Fluid Grids

Page 7: How to Create a Successful Web App & Cloud Based Startup in Armenia

CSS Media Queries@media screen and (min-width: 480px) {

.content {

float: left;

}

.social_icons {

display: none

}

// and so on...

}

● 480px

● 600px

● 768px

● 900px

● 1200px

Page 8: How to Create a Successful Web App & Cloud Based Startup in Armenia

HTML<div class="section group">

<div class="col span_1_of_3">This is column 1</div><div class="col span_1_of_3">This is column 2</div><div class="col span_1_of_3">This is column 3</div>

</div>

Page 9: How to Create a Successful Web App & Cloud Based Startup in Armenia

CSS/* SECTIONS */.section {clear: both;

padding: 0px;margin: 0px;}

/* COLUMN SETUP */.col {display: block;

float:left;margin: 1% 0 1% 1.6%;}

.col:first-child { margin-left: 0; }

/* GROUPING */.group:before,.group:after {content:"";

display:table;}.group:after {clear:both;}

/* GRID OF THREE */.span_3_of_3 {width: 100%;}.span_2_of_3 {width: 66.1%;}.span_1_of_3 {width: 32.2%;}

/* GO FULL WIDTH AT LESS THAN 480 PIXELS */@media only screen and (max-width: 480px) {

.col { margin: 1% 0 1% 0%;}}

@media only screen and (max-width: 480px) {

.span_3_of_3 {width: 100%; }

.span_2_of_3 {width: 100%; }

.span_1_of_3 {width: 100%;}}

Page 10: How to Create a Successful Web App & Cloud Based Startup in Armenia

What it will Look Like

Page 11: How to Create a Successful Web App & Cloud Based Startup in Armenia

How it Works

/* SECTIONS */.section {clear: both;

padding: 0px;margin: 0px;}

.sectionsplits up the page horizontally. You'll

need a few of these to break up the

content, and you can use them in your

main wrapper, or within other divs.

Page 12: How to Create a Successful Web App & Cloud Based Startup in Armenia

How it Works/* COLUMN SETUP */.col {display: block;

float:left;margin: 1% 0 1% 1.6%;}

.col:first-child { margin-left: 0; }

.col

divides the section into columns. Each

column has a left margin of 1.6%

(around 20 pixels on a normal

monitor), except the first one. Using.

col:first-child { margin-left: 0; }

means you don't need to use class="

last"anywhere. It works in all browsers

since IE6.

Page 13: How to Create a Successful Web App & Cloud Based Startup in Armenia

How it Works

/* GROUPING */.group:before,.group:after {content:"";

display:table;}.group:after {clear:both;}

.group

solves floating problems, by forcing

the section to self clear its children

(aka the clearfix hack). This is good in

Firefox 3.5+, Safari 4+, Chrome, Opera

9+ and IE 6+.

Page 14: How to Create a Successful Web App & Cloud Based Startup in Armenia

How it Works

/* GRID OF THREE */.span_3_of_3 {width: 100%;}.span_2_of_3 {width: 66.1%;}.span_1_of_3 {width: 32.2%;}

.span_1_of_3

specifies the width of the column.

Using percentages means it's 100%

fluid.

Page 15: How to Create a Successful Web App & Cloud Based Startup in Armenia

How it Works/* GO FULL WIDTH AT LESS THAN 480 PIXELS */@media only screen and (max-width: 480px) {

.col { margin: 1% 0 1% 0%;}}

@media only screen and (max-width: 480px) {

.span_3_of_3 {width: 100%; }

.span_2_of_3 {width: 100%; }

.span_1_of_3 {width: 100%;}}

@media queries

as soon as the screen size

gets less than 480 pixels the

columns stack and the

margins disappear.

Page 16: How to Create a Successful Web App & Cloud Based Startup in Armenia

Responsive Example

Page 17: How to Create a Successful Web App & Cloud Based Startup in Armenia

Object Manipulation

Page 19: How to Create a Successful Web App & Cloud Based Startup in Armenia

Framework

Page 20: How to Create a Successful Web App & Cloud Based Startup in Armenia

Bootstrap● From Twitter● 12-grid responsive layout● Custom jQuery plugins

for common UIs like carousels and modal window

● Bootstrap customizer● Well documented with

lots of examples● getbootstrap.com

Page 21: How to Create a Successful Web App & Cloud Based Startup in Armenia

Skeleton● simple and clean

responsive CSS boilerplate for HTML5

● Grid responsive layout● A PSD template for

mocking up your web designs

● If you want to get started with responsive design quickly

● www.getskeleton.com

Page 22: How to Create a Successful Web App & Cloud Based Startup in Armenia

Foundation● From ZURB● 12-grid responsive layout● Rapid-prototyping

capabilities● Prototyping● Well documented with

lots of examples● foundation.zurb.com

Page 23: How to Create a Successful Web App & Cloud Based Startup in Armenia

Responsive Design Framework

Page 24: How to Create a Successful Web App & Cloud Based Startup in Armenia

CMS Systems

Page 25: How to Create a Successful Web App & Cloud Based Startup in Armenia

Why are CMS good?

● Frameworks● Marketplace● Themes / Plugins● Large Community● Open Source

Page 26: How to Create a Successful Web App & Cloud Based Startup in Armenia

Example: GeoTheme

Page 27: How to Create a Successful Web App & Cloud Based Startup in Armenia

Create a Global Directory!

Expandable Google Map V3 with Ajax markers

Connect with Social Media

Page 28: How to Create a Successful Web App & Cloud Based Startup in Armenia

Recurring events option

Enhanced Listings with Recurring Payments

Review management for place owners

Page 29: How to Create a Successful Web App & Cloud Based Startup in Armenia

Web Apps Frameworks

Page 30: How to Create a Successful Web App & Cloud Based Startup in Armenia

Make it Native

Page 31: How to Create a Successful Web App & Cloud Based Startup in Armenia

Starts with an Idea

Page 32: How to Create a Successful Web App & Cloud Based Startup in Armenia

1st 2nd

?

Page 33: How to Create a Successful Web App & Cloud Based Startup in Armenia

47.37%Odds for Red

Page 34: How to Create a Successful Web App & Cloud Based Startup in Armenia

0.0047%

Odds to create another Social Site

Page 35: How to Create a Successful Web App & Cloud Based Startup in Armenia

Know your Competition

Page 36: How to Create a Successful Web App & Cloud Based Startup in Armenia

Find the Niche

Page 37: How to Create a Successful Web App & Cloud Based Startup in Armenia

Armenian Cloud

5. SaaS

Page 38: How to Create a Successful Web App & Cloud Based Startup in Armenia

Development

Page 39: How to Create a Successful Web App & Cloud Based Startup in Armenia

YOU

Page 40: How to Create a Successful Web App & Cloud Based Startup in Armenia

YOUHow to get help?

Find other freelancers?

Where to get help?

What areas do you need help?

Page 41: How to Create a Successful Web App & Cloud Based Startup in Armenia

YOUR TEAM

GlobalFemaleMixed Abilities

Page 42: How to Create a Successful Web App & Cloud Based Startup in Armenia
Page 43: How to Create a Successful Web App & Cloud Based Startup in Armenia

How to Make

Page 44: How to Create a Successful Web App & Cloud Based Startup in Armenia

Advertising& Sponsors

Page 45: How to Create a Successful Web App & Cloud Based Startup in Armenia

Advertising& Sponsors?

Page 46: How to Create a Successful Web App & Cloud Based Startup in Armenia

$236,000

Page 47: How to Create a Successful Web App & Cloud Based Startup in Armenia

Subscribers

Page 48: How to Create a Successful Web App & Cloud Based Startup in Armenia

Advertisers

200

Page 49: How to Create a Successful Web App & Cloud Based Startup in Armenia

Advertising IncomeBusiness = $99

per year

Enhanced = $199

Page 50: How to Create a Successful Web App & Cloud Based Startup in Armenia

Subscribers

2,000

Page 51: How to Create a Successful Web App & Cloud Based Startup in Armenia

Web App IncomeConsumer = $6.99

Business = $29.99

per month

Page 52: How to Create a Successful Web App & Cloud Based Startup in Armenia

Web App Income

Consumer = $13,980Business = $59,980

per month

Page 53: How to Create a Successful Web App & Cloud Based Startup in Armenia

Income from Different Areas

ContractBusiness Consumer

Page 54: How to Create a Successful Web App & Cloud Based Startup in Armenia

Save This

Page 55: How to Create a Successful Web App & Cloud Based Startup in Armenia

Heartbeat Income

Page 56: How to Create a Successful Web App & Cloud Based Startup in Armenia

The Death Chair

Page 57: How to Create a Successful Web App & Cloud Based Startup in Armenia

Marketing

Page 58: How to Create a Successful Web App & Cloud Based Startup in Armenia

What about Social Media?

Page 59: How to Create a Successful Web App & Cloud Based Startup in Armenia

Content Marketing

Page 60: How to Create a Successful Web App & Cloud Based Startup in Armenia

Goal: 5,000 Views

Challenge : 1. Interactive Campaign - no blog

2. Graphical

3. Link Armenia with WordPress

Page 61: How to Create a Successful Web App & Cloud Based Startup in Armenia

Our choice 1. Graphical

2. Embeddable

3. Open roads to new viewers

4. Linked to Economic Development

Page 62: How to Create a Successful Web App & Cloud Based Startup in Armenia
Page 63: How to Create a Successful Web App & Cloud Based Startup in Armenia

188,000+ ViewsResults : 1. Embeds in 17 websites

2. 382 downloads, 32 likes, 10 comments

3. 400+ social media activities

4. Most talked about on LinkedIn

Page 64: How to Create a Successful Web App & Cloud Based Startup in Armenia

Blogging

Page 65: How to Create a Successful Web App & Cloud Based Startup in Armenia

Blogging1. Improves Communication

2. Crystalize Thoughts

3. Feedback on Ideas

4. Forces Learning

5. Create More Content

6. Build Credibility

Page 66: How to Create a Successful Web App & Cloud Based Startup in Armenia

Advertising..Targeted Only..

$5,000 - Page per month

Page 67: How to Create a Successful Web App & Cloud Based Startup in Armenia

Marketing Tips1. Customers determine your priority

2. Focus on your customers and

the money will follow

3. Word of mouth = $$$

4. It is a numbers game

5. Patience, success takes time

Page 68: How to Create a Successful Web App & Cloud Based Startup in Armenia

中國

Don't Just Look West

Page 69: How to Create a Successful Web App & Cloud Based Startup in Armenia

1990

Page 70: How to Create a Successful Web App & Cloud Based Startup in Armenia

1996

Page 71: How to Create a Successful Web App & Cloud Based Startup in Armenia

2010

Page 72: How to Create a Successful Web App & Cloud Based Startup in Armenia

520 Million

200 Million

140 Million

140 Million

China

USA

Growth2015 Online Shoppers

Page 73: How to Create a Successful Web App & Cloud Based Startup in Armenia

Շնորհակալություն

Todd [email protected]