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
HTML
Search
Pokai Chang
December 11, 2013
Technology
4
260
HTML
Pokai Chang
December 11, 2013
Tweet
Share
More Decks by Pokai Chang
See All by Pokai Chang
Teaching English Speaking Language Models to Speak Taiwanese Mandarin
zetavg
1
170
Functional, Declarative and Modular System Environment with Nix and NixOS
zetavg
3
610
Building the Ruby × Elixir Conf App
zetavg
0
190
Overview of GraphQL & Clients
zetavg
5
1.4k
GraphQL & Relay - 串起前後端世界的橋樑
zetavg
16
2.6k
Automated Deploy Flow with CodeShip & OpsWorks & Hubot
zetavg
3
340
機器學習與自然語言辨識 Deep Learing & NLP
zetavg
3
390
Colorgy - 校園 Open API
zetavg
3
650
Git 版本控管-平行宇宙時光穿梭機
zetavg
5
500
Other Decks in Technology
See All in Technology
リアーキテクティングのその先へ 〜品質と開発生産性の壁を越えるプラットフォーム戦略〜 / architecture-con2025
visional_engineering_and_design
0
6.4k
AI時代の戦略的アーキテクチャ 〜Adaptable AI をアーキテクチャで実現する〜 / Enabling Adaptable AI Through Strategic Architecture
bitkey
PRO
15
9.7k
巨大モノリスのリプレイス──機能整理とハイブリッドアーキテクチャで挑んだ再構築戦略
zozotech
PRO
0
280
LINEスキマニ/LINEバイトにおけるバックエンド開発
lycorptech_jp
PRO
0
370
JavaScript パーサーに using 対応をする過程で与えたエコシステムへの影響
baseballyama
1
140
現地速報!Microsoft Ignite 2025 M365 Copilotアップデートレポート
kasada
2
1.7k
Datadog LLM Observabilityで実現するLLMOps実践事例 / practical-llm-observability-with-datadog
k6s4i53rx
0
130
.NET 10のEntity Framework Coreの新機能
htkym
0
110
Progressive Deliveryで支える!スケールする衛星コンステレーションの地上システム運用 / Ground Station Operation for Scalable Satellite Constellation by Progressive Delivery
iselegant
1
210
ローカルLLM基礎知識 / local LLM basics 2025
kishida
23
8.1k
Greenは本当にGreenか? - B/GデプロイとAPI自動テストで安心デプロイ
kaz29
0
130
『星の世界の地図の話: Google Sky MapをAI Agentでよみがえらせる』 - Google Developers DevFest Tokyo 2025
taniiicom
0
300
Featured
See All Featured
Build The Right Thing And Hit Your Dates
maggiecrowley
38
2.9k
The Power of CSS Pseudo Elements
geoffreycrofte
80
6.1k
Improving Core Web Vitals using Speculation Rules API
sergeychernyshev
21
1.3k
The Web Performance Landscape in 2024 [PerfNow 2024]
tammyeverts
11
940
Raft: Consensus for Rubyists
vanstee
140
7.2k
The Straight Up "How To Draw Better" Workshop
denniskardys
239
140k
Context Engineering - Making Every Token Count
addyosmani
9
410
Learning to Love Humans: Emotional Interface Design
aarron
274
41k
YesSQL, Process and Tooling at Scale
rocio
174
15k
GraphQLの誤解/rethinking-graphql
sonatard
73
11k
Rails Girls Zürich Keynote
gr2m
95
14k
What's in a price? How to price your products and services
michaelherold
246
12k
Transcript
HTML
HTML 是沙毀
HTML 是沙毀 !3 ▪ HyperText Markup Language 超⽂文字標記語⾔言 HTML/
HTML 是沙毀 !4 ▪ HyperText Markup Language 超⽂文字標記語⾔言 HTML/
HTML 是沙毀 !5 ▪ HyperText Markup Language 超⽂文字標記語⾔言 HTML/
HTML 是沙毀 !6 ▪ HyperText Markup Language 超⽂文字標記語⾔言 ▪ 純⽂文字檔
(.htm/.html) HTML/
HTML 是沙毀 !7 ▪ HyperText Markup Language 超⽂文字標記語⾔言 ▪ 純⽂文字檔
(.htm/.html) ▪ 不是程式語⾔言,只是標記語⾔言 HTML/
HTML 是沙毀 !8 ▪ HyperText Markup Language 超⽂文字標記語⾔言 ▪ 純⽂文字檔
(.htm/.html) ▪ 不是程式語⾔言,只是標記語⾔言 HTML/
HTML 是沙毀 !9 ▪ HyperText Markup Language 超⽂文字標記語⾔言 ▪ 純⽂文字檔
(.htm/.html) ▪ 不是程式語⾔言,只是標記語⾔言 HTML/
!10 網頁技術 HTML JavaScript CSS HTML/ 架構 樣式 ⾏行為 網⾴頁的內容
網⾴頁的外觀 網⾴頁和使⽤用者的互動
!11 網頁技術 HTML JavaScript CSS HTML/ 架構 樣式 ⾏行為 網⾴頁的內容
網⾴頁的外觀 網⾴頁和使⽤用者的互動
Hands On
!13 準備工具 ▪ Browser 瀏覽器 ▪ Google Chrome ▪ FireFox
▪ Text Editor 純⽂文字編輯器 ▪ Sublime Text ▪ Vim ▪ Notepad++
Why not Dreamweaver? or FrontPage, Namo WebEditor, etc…
手寫比較快&乾淨
手寫比較快&乾淨 沒有新技術時差
手寫比較快&乾淨 沒有新技術時差 不被工具限制
Setup
!19 基本架構 <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Hi</title> </head>
<body> ... </body> </html>
!20 基本架構 <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Hi</title> </head>
<body> ... </body> </html>
!21 基本架構 <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Hi</title> </head>
<body> ... </body> </html>
!22 基本架構 <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Hi</title> </head>
<body> ... </body> </html>
!23 基本架構 <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Hi</title> </head>
<body> ... </body> </html>
!24 基本架構 <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Hi</title> </head>
<body> ... </body> </html>
!25 基本架構 <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Hi</title> </head>
<body> ... </body> </html>
!26 基本架構 <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Hi</title> </head>
<body> ... </body> </html>
!27 基本架構 <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Hi</title> </head>
<body> ... </body> </html>
基本標籤
基本標籤 主標題 <h1> </h1> (heading)
基本標籤 標題ㄧ <h1> </h1> 標題二 標題三 標題四 標題五 標題六 <h2>
</h2> <h3> </h3> <h4> </h4> <h5> </h5> <h6> </h6>
段落段落,段落段落段落段落,段落段落段落 段落段落段落,段落段落段落段落,段落段落 段落段落,段落段落段落段落段落段落,段落 段落,段落段落,段落段落,段落段落,段落 段落段落段落,段落段落。 ! 段落段落,段落段落段落段落,段落段落段落 段落段落段落,段落段落段落段落,段落段落 段落段落,段落段落段落段落段落段落。 基本標籤
<p> </p> <p> </p> (paragraph)
!32 Hands On <!DOCTYPE html> <html < < < </
< ! ! </ </ <h1>如何⽤用利瑪竇造句?</h1> <p>我昨天才剛把綠⾖豆種下去,今天⽴立⾺馬 ⾖豆⼦子就⻑⾧長出來了呢!</p> <p>此監聽內容有利⾺馬⾾鬥⾛走⺩王⾦金平。</p>
文字文字文字文字文字文字文字文字文 字文字文字文字文字文字文字文字文字 文字文字文字文字文字 文字文字文字文字文字文字文字文字文 字文字文字文字文字文字文字文字文字 文字文字文字文字文字文字文字 ! 基本標籤 <br> (break)
重要 基本標籤 <strong> </strong>
基本標籤 <em> </em>
刪除線 基本標籤 <del> </del>
‧項目一 ‧項目二 ‧項目三 ‧項目四 ‧項目五 基本標籤 <ul> </ul> <li> </li>
<li> </li> <li> </li> <li> </li> <li> </li>
1. 項目一 2. 項目二 3. 項目三 4. 項目四 5. 項目五
基本標籤 <ol> </ol> <li> </li> <li> </li> <li> </li> <li> </li> <li> </li>
!39 Hands On ! ! ! < < </ <
! ! ! ! ! </ </ <ul> <li>君⼦子坦蕩盪,⼩小⼈人寫作業。</li> <li>商⼥女不知亡國恨,⼀一天到晚寫作業。</li> <li>舉頭望明⽉月,低頭寫作業。</li> <li>洛陽親友如相問,就說我在寫作業。</li> <li>少壯不努⼒力,⽼老⼤大寫作業。</li> <li>垂死病中驚坐起,今天還沒寫作業。</li> </ul>
!40 Hands On ! ! ! < < </ <
! ! ! ! ! </ </ <ol> <li>君⼦子坦蕩盪,⼩小⼈人寫作業。</li> <li>商⼥女不知亡國恨,⼀一天到晚寫作業。</li> <li>舉頭望明⽉月,低頭寫作業。</li> <li>洛陽親友如相問,就說我在寫作業。</li> <li>少壯不努⼒力,⽼老⼤大寫作業。</li> <li>垂死病中驚坐起,今天還沒寫作業。</li> </ol>
超連結 基本標籤 <a href="http://google.com"> </a> (anchor)
超連結 基本標籤 <a href="http://google.com" target=“_blank"> </a>
超連結 基本標籤 <a href="anotherpage.htm"> </a>
超連結 基本標籤 <a href="/index.htm"> </a>
!45 Hands On ! ! ... < < </ <
! </ </ <a href="homework.html">寫作業</a> index.html
!46 Hands On ! ! ! ! ! ! ...
< < < < < < < </ ! </ </ <a href="index.html">回⾸首⾴頁</a> homework.html
基本標籤 <img src="...">
基本標籤 <hr>
表格欄位 表格欄位 表格欄位 表格欄位 表格欄位 表格欄位 表格欄位 表格欄位 表格欄位 基本標籤
<table> </table> <tr> </tr> <tr> </tr> <tr> </tr> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td>
<center> <font> <small> <big> <u> <b> <i>
<center> <font> <small> <big> <u> <b> <i> HTML 只管內容、意義 看起來怎樣是
CSS 的事
!52 More ▪ W3School http://www.w3schools.com/
CSS