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
[數位教學] 用Bootstrap製作網頁
Search
HeChien Hsu
December 30, 2012
Education
0
1.3k
[數位教學] 用Bootstrap製作網頁
這是學校作業,用Bootstrap製作一個網頁。
可搭配影片服用,但影片尚未處理 ....
HeChien Hsu
December 30, 2012
Tweet
Share
More Decks by HeChien Hsu
See All by HeChien Hsu
Using Git hosting
hechien
0
45
[Kaohsiung Rails meetup] 國際化影片分享網站
hechien
0
160
[Wheel Lab #2] Apple Service with Rails.
hechien
0
78
[Sokoos][教育訓練] Git - 1
hechien
0
150
DesignYou - 專題報告投影片
hechien
0
110
[作業] 創意美學
hechien
0
56
[教育訓練] Rails Form Basic
hechien
1
73
[教育訓練] Rails Validation Basic
hechien
1
81
Rails Layout Basic
hechien
2
120
Other Decks in Education
See All in Education
株式会社アイエスエイ 会社概要
recruit_isa
0
100
Online Privacy
takahitosakamoto
1
120
[Segah 2025] Gamified Interventions for Composting Behavior in the Workplace
ezefranca
0
160
ROSConJP 2025 発表スライド
f0reacharr
0
240
Web Architectures - Lecture 2 - Web Technologies (1019888BNR)
signer
PRO
0
3.2k
Master of Applied Science & Engineering: Computer Science & Master of Science in Applied Informatics: Artificial Intelligence and Data Science
signer
PRO
0
830
中間活動報告会 人材育成WG・技術サブWG / 20250808-oidfj-eduWG-techSWG
oidfj
0
730
高校におけるプログラミング教育を考える
naokikato
PRO
0
160
”育てる”から”育つ”仕組みへ!スクラムによる新入社員教育
arapon
0
160
尊敬語「くださる」と謙譲語「いただく」の使い分け
hysmrk
0
100
吉岡研究室紹介(2025年度)
kentaroy47
0
340
Human Perception and Cognition - Lecture 4 - Human-Computer Interaction (1023841ANR)
signer
PRO
0
1.2k
Featured
See All Featured
Rails Girls Zürich Keynote
gr2m
95
14k
Practical Orchestrator
shlominoach
190
11k
A Modern Web Designer's Workflow
chriscoyier
697
190k
Thoughts on Productivity
jonyablonski
70
4.9k
Optimising Largest Contentful Paint
csswizardry
37
3.4k
Why Our Code Smells
bkeepers
PRO
339
57k
Git: the NoSQL Database
bkeepers
PRO
431
66k
Visualizing Your Data: Incorporating Mongo into Loggly Infrastructure
mongodb
48
9.7k
The Art of Programming - Codeland 2020
erikaheidi
56
14k
Stop Working from a Prison Cell
hatefulcrawdad
271
21k
4 Signs Your Business is Dying
shpigford
185
22k
Designing Dashboards & Data Visualisations in Web Apps
destraynor
231
53k
Transcript
用Bootstrap製作網頁 徐赫謙
目錄 單元大綱 引起動機 學習目標 課程主題 測驗一下 重點回顧 課外補充 講義下載
單元大綱 適用對象:大學部四年級生 基本技能:電腦基礎操作 先備知識:網頁設計基礎、HTML基礎
引起動機 透過bootstrap降低製作網頁的難度
學習目標 複習基礎的HTML 認識基礎的CSS 認識Sublime Text 2純文字編輯器 製作一個範例網頁
課程主題教材 HTML複習 CSS基礎認識 軟體下載與安裝 檔案下載與套用 網頁製作
課程主題教材 HTML 複習
課程主題教材 HTML 複習 HTML 基本架構 HTML 常用標籤 HTML 學習資源
課程主題教材 HTML 學習資源 https:/ /gist.github.com/3469449 Google: HTML Tutorial
課程主題教材 CSS基礎認識
課程主題教材 CSS基礎認識 CSS 使用方法 CSS 基礎格式 CSS 學習資源
課程主題教材 CSS 學習資源 Google: CSS tutorial
課程主題教材 軟體下載與安裝
課程主題教材 檔案下載與套用
課程主題教材 製作網頁
容器 <div class=”container”></div> 在這個容器中央塞入網頁內容
列 <div class=”row”></div> 在這個列中可以塞入很多元素,但是這只是一 列。
欄 <div class=”span*”></div> 星號代表數字,例如 span1, span2 數字最小為1最大為12,因為Bootstrap是12欄格 線系統 欄裡面放置的就是顯示的內容
位移 (offset) <div class=”offset*”></div> 星號代表數字,例如 offset1, offset2 數字最小為1最大為12,因為Bootstrap是12欄格 線系統 位移用來留白,可以讓span左邊出現空白
可用於置中,只要算對元素寬度即可
Container row row span span span offset
標籤介紹 ul (unordered list) - 無序清單,用於不必排序 的內容。 ol (ordered list)
- 有序清單,用於需要排序的 內容,會有數字 li (list item) - 清單的物件
測驗一下 想要設計左寬4單位,右寬6單位,中間空2單位 的二欄式網頁的話,該怎樣寫? 一欄4單位,但想要置中的話可以怎樣寫? (不要用margin: auto auto,想想要用offset多 少) bootstrap一列中最多幾欄呢?
重點回顧 html structure container class row class span* class offset*
class
課外補充 http:/ /twitter.github.com/bootstrap http:/ /www.webconf.tw http:/ /www.htmldog.com http:/ /www.codecademy.com/zh/tracks/ htmlcss
https:/ /www.facebook.com/groups/ web.design.tw/
資源下載 範例網頁:http:/ /tinyurl.com/bxmnpms 範例原始碼:https:/ /gist.github.com/4411771