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
40
[Kaohsiung Rails meetup] 國際化影片分享網站
hechien
0
160
[Wheel Lab #2] Apple Service with Rails.
hechien
0
69
[Sokoos][教育訓練] Git - 1
hechien
0
150
DesignYou - 專題報告投影片
hechien
0
100
[作業] 創意美學
hechien
0
48
[教育訓練] Rails Form Basic
hechien
1
62
[教育訓練] Rails Validation Basic
hechien
1
74
Rails Layout Basic
hechien
2
110
Other Decks in Education
See All in Education
Blogit opetuksessa
matleenalaakso
0
1.6k
"数学" をプログラミングしてもらう際に気をつけていること / Key Considerations When Programming "Mathematics"
guvalif
0
560
寺沢拓敬 2024. 09. 「言語政策研究と教育政策研究の狭間で英語教育政策を考える」
terasawat
0
200
Canva
matleenalaakso
0
430
cbt2324
cbtlibrary
0
110
Kindleストアで本を探すことの善悪 #Izumo Developers' Guild 第1回 LT大会
totodo713
0
130
Medicare 101 for 2025
robinlee
PRO
0
230
Lisätty todellisuus opetuksessa
matleenalaakso
1
2.3k
学習指導要領から職場の学びを考えてみる / Thinking about workplace learning from learning guidelines
aki_moon
1
710
HCL Domino 14.0 AutoUpdate を試してみた
harunakano
0
1.7k
CompTIA Security+ SY0-601 Resumo
mariliarochas
2
2.6k
Os pápeis do UX Design
wagnerbeethoven
0
370
Featured
See All Featured
Bootstrapping a Software Product
garrettdimon
PRO
305
110k
Producing Creativity
orderedlist
PRO
341
39k
The Straight Up "How To Draw Better" Workshop
denniskardys
232
140k
Bash Introduction
62gerente
608
210k
JavaScript: Past, Present, and Future - NDC Porto 2020
reverentgeek
47
5k
Put a Button on it: Removing Barriers to Going Fast.
kastner
59
3.5k
Teambox: Starting and Learning
jrom
133
8.8k
Intergalactic Javascript Robots from Outer Space
tanoku
269
27k
Responsive Adventures: Dirty Tricks From The Dark Corners of Front-End
smashingmag
250
21k
[Rails World 2023 - Day 1 Closing Keynote] - The Magic of Rails
eileencodes
33
1.9k
Let's Do A Bunch of Simple Stuff to Make Websites Faster
chriscoyier
506
140k
Why You Should Never Use an ORM
jnunemaker
PRO
54
9.1k
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