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
Search
Sponsored
·
SiteGround - Reliable hosting with speed, security, and support you can count on.
→
Maplewing
September 16, 2013
Programming
2.2k
1
Share
Embed
Copy iframe code
Copy JS code
Copy link
Start on current slide
資訊實務應用讀書會 第一堂課:Basic HTML
2013/09/16 12:50-13:30 @NTNU C208
Basic HTML
Maplewing
September 16, 2013
More Decks by Maplewing
See All by Maplewing
師大資工系ACM-ICPC讀書會:肆、鏈結串列與二元樹
sinmaplewing
0
160
資訊實務應用讀書會 第七堂課:jQuery
sinmaplewing
0
2.1k
師大資工系ACM-ICPC讀書會:參、堆疊與佇列
sinmaplewing
0
250
師大資工系ACM-ICPC讀書會:貳、排序搜尋與數學基礎
sinmaplewing
0
210
資訊實務應用讀書會 第六堂課:Basic CSS
sinmaplewing
0
1.8k
師大資工系ACM-ICPC讀書會:壹、字串處理與大數運算
sinmaplewing
0
160
師大資工系ACM-ICPC讀書會:零、比賽介紹、解題系統介紹
sinmaplewing
0
240
資訊實務應用讀書會 第四堂課(支線):Linux
sinmaplewing
0
1.9k
Other Decks in Programming
See All in Programming
AWS DevOps AgentのAzure接続機能を検証して見えた活用法/Use Cases Verified for the AWS DevOps Agent's Azure Connectivity Feature
masakiokuda
1
250
プロポーザルを書いてもらう
pvcresin
0
560
How I Won Prize Money at a Hackathon Using Codex and Symphony Alpha
yasei_no_otoko
0
120
2年かけて Deno に DOMMatrix を実装した話 / How I implemented DOMMatrix in Deno over two years
petamoriken
0
210
自動化したのに回らない テスト運用の壁―AI時代の品質責任と生産性
mfunaki
0
360
Flow は今どうなっているか
mizdra
PRO
0
660
170k Jobs a Day on GKE: Scaling Mercari's CI Platform - and What's Next for AI-Native Development
junyaokabe
0
120
S3 を使うアプリケーションをローカル完結で動かすことに全力を注いでみた / Running S3 Apps Offline
contour_gara
0
560
KotlinConf Extended South Korea 2026 Keynote
l2hyunwoo
0
110
TSX の <Hoge<Fuga>> という構文に驚いた話 / tsx-type-argument-syntax
kanaru0928
0
240
運用ダッシュボードの設計を誰も教えてくれないのだけどみなさんどうしてるんですか? - チームに監視するという文化を根付かせるための第一歩を踏みたい -
satoshi256kbyte
1
140
React本体のコードリーディング
high_g_engineer
1
150
Featured
See All Featured
We Have a Design System, Now What?
morganepeng
55
8.3k
AI: The stuff that nobody shows you
jnunemaker
PRO
9
930
Optimizing for Happiness
mojombo
378
71k
More Than Pixels: Becoming A User Experience Designer
marktimemedia
3
490
From π to Pie charts
rasagy
0
310
WENDY [Excerpt]
tessaabrams
11
39k
Exploring the relationship between traditional SERPs and Gen AI search
raygrieselhuber
PRO
2
4.2k
Six Lessons from altMBA
skipperchong
29
4.4k
Making the Leap to Tech Lead
cromwellryan
135
10k
Producing Creativity
orderedlist
PRO
348
40k
What does AI have to do with Human Rights?
axbom
PRO
1
2.3k
The Anti-SEO Checklist Checklist. Pubcon Cyber Week
ryanjones
0
220
Transcript
資訊實務讀書會:第一堂課 Basic HTML 師大資工103級 灆洢 / 曹又霖
網頁、網站、瀏覽器
網頁
網站 • 網頁的集合體。 • 通常用樹狀圖來架構網站。 首頁 自我介紹 個人作品 遊戲介紹
首頁 • 檔名通常為index • 若為HTML檔案:index.html / index.htm • 若為PHP檔案:index.php
瀏覽器
認識HTML
HTML • HyperText Markup Language • 超文件標記語言 • 用於網頁的排版
HTML網頁基本結構 <!DOCTYPE html> <html> <head> <title>這裡是標題的部分</title> </head> <body> 這裡是內容的部分。 <!--
此為註解 --> </body> </html> 版本宣告 HTML文件 文件整體資訊 文件內容
基本文章結構
標題 <body> <h1>一級標題</h1> <h2>二級標題</h2> <h3>三級標題</h3> <h4>四級標題</h4> <h5>五級標題</h5> <h6>六級標題</h6> </body>
段落 <body> <p>第一個段落</p> <p>第二個段落</p> </body>
強調標籤與換行標籤 <body> <p> <em>斜體強調</em>,<br /> <strong>粗體強調</strong>,<br /> <em><strong>粗斜體強調</strong></em> </p> </body>
pre標籤 <body> <pre> 這是一篇很長的文章, 害我懶的用br和p標籤, 真是抱歉! </pre> </body>
Meta標籤:設定編碼(UTF-8) <head> <meta charset="UTF-8" /> <title>標題</title> </head>
DOM Tree
DOM Tree <!DOCTYPE html> <html> <head> <title>文章範例</title> </head> <body> <h1>主要標題</h1>
<p> <em> <strong>粗斜體強調</strong> </em> </p> </body> </html> Document html head body title 文章範例 h1 em 主要標題 粗斜體強調 strong p
圖片與超連結
圖片 <body> <img src="http://www.knightzone.org/image/thumbs/32.jpg" alt="全身圖" /> <!-- 放置圖片 --> </body>
超連結 <body> <a href="http://www.google.com" target="_blank">往 Google</a> </body>
表格及清單
行列&欄列 行、欄、column 列 、 row
表格 <body> <table border="1"> <tr> <td>5月10日</td> <td>去幫爸爸買車</td> </tr> <tr> <td>6月10日</td>
<td>去幫媽媽買房子</td> </tr> <tr> <td>7月10日</td> <td>去幫哥哥買電腦</td> </tr> </table> </body>
表格標題格 <table border="1"> <tr> <th>日期</th><th>待辦事項</th> </tr> <tr> <td>5月10日</td> <td>去幫爸爸買車</td> </tr>
</table>
合併行
合併列
符號式清單
編號式清單
多媒體嵌入
embed:外部播放器嵌入法
audio:播放音樂
video:播放影片
None
None
source:多來源 <audio controls> <source src="horse.ogg" type="audio/ogg"> <source src="horse.mp3" type="audio/mpeg"> Your
browser does not support the audio element. </audio>
參考資料與作業
• 新罪楓翼☆灆洢騎士 • http://knightzone.logdown.com/ • W3schools.com • http://www.w3schools.com/ • W3schools
簡中 • http://www.w3school.com.cn/ • Codecademy • http://www.codecademy.com/ • W3C • http://www.w3.org/ • MOZILLA DEVELOPER NETWORK • https://developer.mozilla.org/zh-TW/
作業:介紹自己興趣的網站 • 設計幾頁的網站來介紹自己的興趣的相關內容。 • 例如:音速小子、LoveLive……等等 • 禁止使用未被HTML5接納的標籤 • 你可以至w3schools.com上面查看 •
並不要求一定要通過W3C嚴格檢查 • 樣式部分可先省略 • 因為我尚未教CSS • 各位可以先自學看看
Thanks.