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
Basic HTML + SEO - A Simple Tutorial @5945
Search
Andro Chen Chun-An
May 02, 2013
Programming
0
50
Basic HTML + SEO - A Simple Tutorial @5945
2013-05-02 Basic HTML + SEO - A Simple Tutorial @5945
Andro Chen Chun-An
May 02, 2013
Tweet
Share
More Decks by Andro Chen Chun-An
See All by Andro Chen Chun-An
入坑滑雪自由行: 新手入門懶人包 - 雪場,費用,行程,行李,訓練 全攻略
androchentw
0
4
2021-02-17_splunk_cafe.pdf
androchentw
0
45
When Andro Meets Android - Android Taipei
androchentw
0
160
What I've Learned From Startups
androchentw
0
66
Baidu SEO II
androchentw
1
83
Baidu SEO - A Practical Guide
androchentw
0
52
Privacy-Preserving Data Mining and Collusion Resistance
androchentw
0
46
啡˙聞
androchentw
1
53
VANET Simulation of AP assistance
androchentw
0
40
Other Decks in Programming
See All in Programming
色々なIaCツールを実際に触って比較してみる
iriikeita
0
330
カンファレンスの「アレ」Webでなんとかしませんか? / Conference “thing” Why don't you do something about it on the Web?
dero1to
1
110
Pinia Colada が実現するスマートな非同期処理
naokihaba
4
230
最新TCAキャッチアップ
0si43
0
200
TypeScriptでライブラリとの依存を限定的にする方法
tutinoko
3
700
レガシーシステムにどう立ち向かうか 複雑さと理想と現実/vs-legacy
suzukihoge
14
2.3k
シェーダーで魅せるMapLibreの動的ラスタータイル
satoshi7190
1
480
macOS でできる リアルタイム動画像処理
biacco42
9
2.4k
Contemporary Test Cases
maaretp
0
140
よくできたテンプレート言語として TypeScript + JSX を利用する試み / Using TypeScript + JSX outside of Web Frontend #TSKaigiKansai
izumin5210
6
1.8k
ヤプリ新卒SREの オンボーディング
masaki12
0
130
cmp.Or に感動した
otakakot
3
220
Featured
See All Featured
Learning to Love Humans: Emotional Interface Design
aarron
273
40k
Reflections from 52 weeks, 52 projects
jeffersonlam
346
20k
Producing Creativity
orderedlist
PRO
341
39k
The Psychology of Web Performance [Beyond Tellerrand 2023]
tammyeverts
44
2.2k
CoffeeScript is Beautiful & I Never Want to Write Plain JavaScript Again
sstephenson
159
15k
The Art of Delivering Value - GDevCon NA Keynote
reverentgeek
8
900
Java REST API Framework Comparison - PWX 2021
mraible
PRO
28
8.2k
The Invisible Side of Design
smashingmag
298
50k
BBQ
matthewcrist
85
9.3k
Practical Orchestrator
shlominoach
186
10k
KATA
mclloyd
29
14k
Embracing the Ebb and Flow
colly
84
4.5k
Transcript
Basic HTML + SEO - A Simple Tutorial " 2013/05/02"
Andro Chen 陳俊安" 5945 呼叫師傅
Agenda • HTML" • Basic" • With CSS" • Tools"
• Example – 電子報" • SEO Concept" • Q & A" • There is no stupid question!" 2014/3/20 Andro Chen © 5945 呼叫師傅 2
HTML - HyperText Markup Language • Structure(Bone) of a webpage"
• CSS – Skin, color" • JavaScript – Brain, animation " • Tags!" 2014/3/20 Andro Chen © 5945 呼叫師傅 3
HTML = Tags + Attributes • Basic1.html" • <!DOCTYPE HTML>"
• <html>" • <head>! • <title>! • <body>! • Basic2.html" • <!-- .. -->" • <h1> to <h6>! • <p>" • Basic3.html" • <a href=“URL”>! • <strong>" • <hr>" 2014/3/20 Andro Chen © 5945 呼叫師傅 4 • Basic4.html" • <meta> utf-8" • <img src=“URL” alt=“text”>! • <button>" • <br>" • <blockquote>" • <i>" • Basic5.html" • <meta> keywords, description! • <div>! • <span>" • <iframe>" • Basic6.html" • <ol>, <li>" • <ul>, <li>" • <table>" • <form>, <input>" • Google!"
Layout – Wiki Outside In 2014/3/20 Andro Chen © 5945
呼叫師傅 5
Layout – Wiki " 2014/3/20 Andro Chen © 5945 呼叫師傅
6
Layout – Wiki " 2014/3/20 Andro Chen © 5945 呼叫師傅
7
Layout – Wiki " 2014/3/20 Andro Chen © 5945 呼叫師傅
8
HTML – Layout With CSS • 行內套用 (Inline)" • <p
style=“font-size: 16px;”></p>" • 嵌入套用 (Embed) " • <style type="text/css"> div { background-color: #abcdef; } </style> " • 外部連接套用 (External Link)" • <link rel=stylesheet type="text/css" href=“site.css"> 2014/3/20 Andro Chen © 5945 呼叫師傅 9 • Box Model" (Via 1keydata.com)"
HTML – Layout With CSS • Basic4_css1.html" • Selector –
tag, #id, .class" • font-size, font-weight, text-decoration" • color, background-color" • Basic4_css2.html" • width, height" • margin, padding, border" • -top, -right, -bottom, -left" 2014/3/20 Andro Chen © 5945 呼叫師傅 10 • float_demo.html" • float <-> clear" • left, right, none"
HTML – Cheat sheet • 改圖 <img src=“URL” alt=“替代文字”>" •
改連結 <a href=“URL”>連結文字</a>" • CSS" • #id {" font-family: “微軟正黑體”, Verdana; /* 字型 */" font-size: 12px; /* 字體大小 */" font-weight: bold; /* 粗斜體 */" text-decoration: underline; /* 底線 */" "color: blue; /* 字顏色 */" }" 2014/3/20 Andro Chen © 5945 呼叫師傅 11
HTML – Tools • Editor - Sublime Text 2" •
Chrome DevTools" • More on 5945 blog" 2014/3/20 Andro Chen © 5945 呼叫師傅 12
HTML – 電子報v1 by Lucien 2014/3/20 Andro Chen © 5945
呼叫師傅 13
Terms • SEM " • Search Engine Marketing" • ~=
Paid search + SEO" • Instant qualified traffic" • SEO" • Search Engine Optimization" • Organic search results • Site Structure, content, keywords" • Long-term management" 2014/3/20 Andro Chen © 5945 呼叫師傅 14
2014/3/20 Andro Chen © 5945 呼叫師傅 15
SEO - Index • Principal" • Spider/Crawler => pre-process =>
rank" • Structure" • Website structure – HTML" • Structure Optimization" • Content" • Page Optimization" • Link Optimization" • Keyword" • Cheat/Punishment: Black Hat SEO" 2014/3/20 Andro Chen © 5945 呼叫師傅 16
2011 Google Ranking Factors 2014/3/20 Andro Chen © 5945 呼叫師傅
17 By SEOMoz
Details • 必讀" • Google搜尋引擎最佳化初學者指南" • Google’s SEO 報告解析" •
工作分配: 一個完整的SEO團隊人員基本配置" • 具體做法" • 搭配 Paid Search 的關鍵字,撰寫專文頁面" 2014/3/20 Andro Chen © 5945 呼叫師傅 18
Reference • HTML + CSS" • http://www.w3schools.com/tags/" • http://css.1keydata.com/tw/" •
SEO & SEM" • Google SEO Report Card" • 社会化媒体对SEO的帮助–社群讯号 • Google!" 2014/3/20 Andro Chen © 5945 呼叫師傅 19
" " " " " " "Q & A 2014/3/20
Andro Chen © 5945 呼叫師傅 20
" " " " " "Thank you! 2014/3/20 Andro Chen
© 5945 呼叫師傅 21