Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
UTEP AITP Presentation - 10/17/2012
Search
Brandon Silverstein
October 18, 2012
Business
180
0
Share
Embed
Copy iframe code
Copy JS code
Copy link
Start on current slide
UTEP AITP Presentation - 10/17/2012
Brandon Silverstein
October 18, 2012
More Decks by Brandon Silverstein
See All by Brandon Silverstein
UTEP IEEE Presentation - 11/30/12
impulsedev
1
71
Other Decks in Business
See All in Business
Facilo Company Deck202607_採用サイト用
facilo_inc
0
720
こだわりを手放したことで気づけたスクラムマスターとしての振る舞い
kawanotron
1
600
ログラス会社紹介資料 / Loglass Company Deck
loglass2019
19
570k
己のキャリアと野望を語る ~はじめて出したCfPを供養しよう~
r5ni4
0
180
アートプレスト 会社紹介資料【新卒採用】
ap_kouhou
0
450
数字で見る松岡会計事務所(2026年版)
wf714201
0
720
Recruiting Deck 2607
sd_official
0
100
enechain company deck
enechain
PRO
10
190k
「受託脳」から「提案脳」へ〜「一緒に悩んで、いいものつくる」を目指して
kuranuki
3
1.6k
株式会社SAFELY 会社紹介 / Company
safely_pr
1
8k
医院継承G紹介資料_エムスリー株式会社
m3
0
1.5k
「人を育てる」ことは「待ちこがれる」ことである
kawanotron
0
290
Featured
See All Featured
No one is an island. Learnings from fostering a developers community.
thoeni
21
3.8k
WCS-LA-2024
lcolladotor
0
800
Google's AI Overviews - The New Search
badams
0
1.1k
From π to Pie charts
rasagy
0
300
Reality Check: Gamification 10 Years Later
codingconduct
0
2.3k
Improving Core Web Vitals using Speculation Rules API
sergeychernyshev
21
1.6k
svc-hook: hooking system calls on ARM64 by binary rewriting
retrage
2
490
Measuring Dark Social's Impact On Conversion and Attribution
stephenakadiri
2
250
AI Search: Implications for SEO and How to Move Forward - #ShenzhenSEOConference
aleyda
1
1.3k
Unlocking the hidden potential of vector embeddings in international SEO
frankvandijk
0
900
RailsConf & Balkan Ruby 2019: The Past, Present, and Future of Rails at GitHub
eileencodes
141
35k
Helping Users Find Their Own Way: Creating Modern Search Experiences
danielanewman
31
3.3k
Transcript
The 10 Most Important Things You Will Ever Learn About
Web Design and Starting a Business (Not Really) UTEP AITP - October 17, 2012
Brandon Silverstein •Graduated from UTEP in December 2004 with a
B.S. in Computer Science. •Freelance web designer during college. •Started Impulse Development in September 2006.
N U M B E R 1 Web design starts
with HTML and CSS.
html5boilerplate.com
<!DOCTYPE html> <!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8
lt-ie7"> <![endif]--> <!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]--> <!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]--> <!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]--> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title></title> <meta name="description" content=""> <meta name="viewport" content="width=device-width"> <!-- Place favicon.ico and apple-touch-icon.png in the root directory --> <link rel="stylesheet" href="css/normalize.css"> <link rel="stylesheet" href="css/main.css"> <script src="js/vendor/modernizr-2.6.1.min.js"></script> </head> <body> <!--[if lt IE 7]> <p class="chromeframe">You are using an outdated browser. <a href="http://browsehappy.com/">Upgrade your browser today</a> or <a href="http://www.google.com/chromeframe/?redirect=true">install Google Chrome Frame</a> to better experience this site.</p> <![endif]--> <!-- Add your site or application content here --> <p>Hello world! This is HTML5 Boilerplate.</p> <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js"></script> <script>window.jQuery || document.write('<script src="js/vendor/jquery-1.8.0.min.js"><\/script>')</ script> <script src="js/plugins.js"></script> <script src="js/main.js"></script> </body> </html>
None
body { background-color: orange; } p { color: blue; font-weight:
bold; font-size: 5.0em; text-align: center; }
None
HTML = Content CSS = Style
None
<!DOCTYPE html> <!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8
lt-ie7"> <![endif]--> <!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]--> <!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]--> <!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]--> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title></title> <meta name="description" content=""> <meta name="viewport" content="width=device-width"> <!-- Place favicon.ico and apple-touch-icon.png in the root directory --> <link rel="stylesheet" href="css/normalize.css"> <link rel="stylesheet" href="css/main.css"> <script src="js/vendor/modernizr-2.6.1.min.js"></script> </head> <body> <!--[if lt IE 7]> <p class="chromeframe">You are using an outdated browser. <a href="http://browsehappy.com/">Upgrade your browser today</a> or <a href="http://www.google.com/chromeframe/?redirect=true">install Google Chrome Frame</a> to better experience this site.</p> <![endif]--> <!-- Add your site or application content here --> <p>Hello world! This is HTML5 Boilerplate.</p> <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js"></script> <script>window.jQuery || document.write('<script src="js/vendor/jquery-1.8.0.min.js"><\/script>')</ script> <script src="js/plugins.js"></script> <script src="js/main.js"></script> </body> </html>
Semantic HTML <h1>Most Important Heading</h1> <h2>Less Important Heading</h2> <p>Paragraph Text</p>
<img src="utep.jpg" />
N U M B E R 2 Good websites are
driven by content.
Content First •Decide which content is most important to the
user. •Organize content in an easy-to-use navigation system. •If a user can’t find content, say goodbye.
None
What are the two most important things to users when
visiting a restaurant website?
What are the two most important things to users when
visiting a restaurant website? Menu and Hours
None
None
Home History Menu Cooking Catering FAQ Links Contact Us Careers
None
None
None
None
N U M B E R 3 Mobile devices have
completely changed web design.
Mobile FYI •378,000 iPhones sold daily. •1,000,000 Android devices activated
daily. •371,000 babies born daily. •Source: lukew.com
Flash • Flash was very popular for building websites. •
Apple killed Flash. • iOS devices have never had Flash installed (battery life, security risks, etc.) • Adobe won’t support Flash in Android 4.1.
Browsers/Devices • Internet Explorer 7, 8, 9, 10 • Safari
• Firefox • Chrome • iPhone 3GS, iPhone 4, iPhone 4S, iPhone 5 • iPad 2, iPad 3, iPad Mini • Thousands of Android Devices
Deliver a unified browsing experience to all devices.
None
None
None
None
Full Site Home About Menu Events Contact Mobile Site Home
About Menu Events Contact
None
None
None
Responsive Design
Responsive Design •One set of HTML/CSS/JS code. •Use CSS to
change the layout of pages based on device width. •Google’s recommend method for serving mobile content.
p { font-size: 2.0em; } @media screen and (min-width: 768px)
{ p { font-size: 1.0em; } }
None
None
None
None
mediaqueri.es responsiveprocess.com
N U M B E R 4 El Paso is
a great place to start a business.
Starting a Business •Work somewhere else first. •Find a good
accountant. •Find a good lawyer to prepare contracts.
N U M B E R 5 Don’t write a
business plan.
Business Plans •Business plans are educated guesses. •Business plans set
unrealistic expectations. •Create a general mission statement to follow.
N U M B E R 6 Learn how to
say no.
No! •We turn down projects that are not a good
fit. Budget, timeline, etc. •We push back on client recommendations if needed. •You will never make everyone happy.
N U M B E R 7 Know your price.
Know Your Price • Don’t work for free unless it
is for an internship. • Discounted work rarely leads to more higher paying work. • Hired a candidate because they told me what they wanted to get paid. • Be confident in your pricing and ability.
N U M B E R 8 Taxes are the
worst.
Taxes •Taxes aren’t the worst, but it sucks to pay
them. •Pay tax throughout the year. •Paying a lot of tax is not the worst problem to have.
N U M B E R 9 Network
Network •You never know who you are going to meet.
•Word of mouth is very important. •El Paso is very small. •Join groups.
N U M B E R 1 0 Don’t be
afraid of change.
Change •Change is scary. •Try to make all business decisions
temporary. •Change keeps you motivated.
Read This Book
THANKS!
[email protected]