实例介绍
head first html and css第二版每一章的代码及资源
【实例截图】
【核心代码】
hfhtmlcss
├── __MACOSX
│ ├── chapter1
│ │ └── starbuzz
│ ├── chapter10
│ │ ├── lounge
│ │ │ ├── about
│ │ │ ├── beverages
│ │ │ ├── images
│ │ └── lounge-complete
│ │ ├── about
│ │ ├── beverages
│ │ └── images
│ ├── chapter11
│ │ ├── absolute
│ │ │ └── images
│ │ ├── lounge
│ │ │ ├── about
│ │ │ ├── beverages
│ │ │ └── images
│ │ ├── starbuzz
│ │ │ └── images
│ │ ├── starbuzz-complete
│ │ │ └── images
│ │ └── tabledisplay
│ │ └── images
│ ├── chapter12
│ │ └── starbuzz
│ │ ├── images
│ │ └── video
│ ├── chapter13
│ │ ├── journal
│ │ │ └── images
│ │ └── journal-complete
│ │ └── images
│ ├── chapter14
│ │ ├── contest
│ │ └── starbuzz
│ │ └── images
│ ├── chapter15
│ ├── chapter2
│ │ ├── completelounge
│ │ │ ├── about
│ │ │ ├── beverages
│ │ │ └── images
│ │ └── lounge
│ ├── chapter3
│ │ └── journal
│ │ └── images
│ ├── chapter4
│ │ ├── buzz
│ │ └── starbuzz
│ ├── chapter5
│ │ ├── lounge
│ │ │ ├── about
│ │ │ ├── beverages
│ │ │ └── images
│ │ ├── mypod
│ │ │ ├── html
│ │ │ ├── logo
│ │ │ ├── photos
│ │ │ └── thumbnails
│ │ ├── testimage
│ │ └── trivia
│ ├── chapter6
│ │ ├── about
│ │ ├── beverages
│ │ └── images
│ ├── chapter7
│ │ ├── about
│ │ ├── beverages
│ │ └── images
│ ├── chapter8
│ │ └── journal
│ │ └── images
│ └── chapter9
│ ├── lounge
│ │ ├── about
│ │ ├── beverages
│ │ └── images
│ └── lounge-complete
│ ├── about
│ ├── beverages
│ └── images
├── chapter1
│ └── starbuzz
│ ├── index.html
│ └── mission.html
├── chapter10
│ ├── lounge
│ │ ├── about
│ │ │ └── directions.html
│ │ ├── beverages
│ │ │ └── elixir.html
│ │ ├── images
│ │ │ ├── background.gif
│ │ │ ├── black.gif
│ │ │ ├── blue.gif
│ │ │ ├── blue.jpg
│ │ │ ├── chai.gif
│ │ │ ├── cocktail.gif
│ │ │ ├── drinks.gif
│ │ │ ├── green.gif
│ │ │ ├── green.jpg
│ │ │ ├── lightblue.gif
│ │ │ ├── lightblue.jpg
│ │ │ ├── logo.gif
│ │ │ ├── red.gif
│ │ │ ├── red.jpg
│ │ │ └── yellow.gif
│ │ ├── lounge.css
│ │ ├── lounge.html
│ │ └── print.css
│ └── lounge-complete
│ ├── about
│ │ └── directions.html
│ ├── beverages
│ │ └── elixir.html
│ ├── images
│ │ ├── background.gif
│ │ ├── black.gif
│ │ ├── blue.gif
│ │ ├── blue.jpg
│ │ ├── chai.gif
│ │ ├── cocktail.gif
│ │ ├── drinks.gif
│ │ ├── green.gif
│ │ ├── green.jpg
│ │ ├── lightblue.gif
│ │ ├── lightblue.jpg
│ │ ├── logo.gif
│ │ ├── red.gif
│ │ ├── red.jpg
│ │ └── yellow.gif
│ ├── lounge.css
│ └── lounge.html
├── chapter11
│ ├── absolute
│ │ ├── images
│ │ │ ├── award.gif
│ │ │ ├── background.gif
│ │ │ ├── background2.gif
│ │ │ ├── bag.gif
│ │ │ ├── cardboard_bg.jpg
│ │ │ ├── coupon.gif
│ │ │ ├── final.jpeg
│ │ │ ├── header.gif
│ │ │ ├── headerlogo.gif
│ │ │ ├── headerlogo2.gif
│ │ │ └── ticket.gif
│ │ ├── index.html
│ │ └── starbuzz.css
│ ├── lounge
│ │ ├── about
│ │ │ └── directions.html
│ │ ├── beverages
│ │ │ └── elixir.html
│ │ ├── images
│ │ │ ├── background.gif
│ │ │ ├── black.gif
│ │ │ ├── blue.gif
│ │ │ ├── blue.jpg
│ │ │ ├── chai.gif
│ │ │ ├── cocktail.gif
│ │ │ ├── drinks.gif
│ │ │ ├── green.gif
│ │ │ ├── green.jpg
│ │ │ ├── lightblue.gif
│ │ │ ├── lightblue.jpg
│ │ │ ├── logo.gif
│ │ │ ├── red.gif
│ │ │ ├── red.jpg
│ │ │ └── yellow.gif
│ │ ├── lounge.css
│ │ └── lounge.html
│ ├── starbuzz
│ │ ├── freecoffee.html
│ │ ├── images
│ │ │ ├── award.gif
│ │ │ ├── background.gif
│ │ │ ├── bag.gif
│ │ │ ├── coupon.gif
│ │ │ ├── header.gif
│ │ │ └── ticket.gif
│ │ ├── index.html
│ │ └── starbuzz.css
│ ├── starbuzz-complete
│ │ ├── freecoffee.html
│ │ ├── images
│ │ │ ├── award.gif
│ │ │ ├── background.gif
│ │ │ ├── bag.gif
│ │ │ ├── header.gif
│ │ │ ├── headerLogo.gif
│ │ │ ├── headerSlogan.gif
│ │ │ └── ticket.gif
│ │ ├── index.html
│ │ └── starbuzz.css
│ └── tabledisplay
│ ├── freecoffee.html
│ ├── images
│ │ ├── award.gif
│ │ ├── background.gif
│ │ ├── background2.gif
│ │ ├── bag.gif
│ │ ├── cardboard_bg.jpg
│ │ ├── coupon.gif
│ │ ├── final.jpeg
│ │ ├── header.gif
│ │ ├── headerlogo.gif
│ │ ├── headerlogo2.gif
│ │ └── ticket.gif
│ ├── index.html
│ └── starbuzz.css
├── chapter12
│ └── starbuzz
│ ├── blog-complete.html
│ ├── blog.html
│ ├── images
│ │ ├── award.gif
│ │ ├── background.gif
│ │ ├── background2.gif
│ │ ├── bag.gif
│ │ ├── cardboard_bg.jpg
│ │ ├── coupon.gif
│ │ ├── final.jpeg
│ │ ├── header.gif
│ │ ├── headerLogo.gif
│ │ ├── headerSlogan.gif
│ │ ├── headerlogo2.gif
│ │ ├── poster.png
│ │ └── ticket.gif
│ ├── index.html
│ ├── starbuzz.css
│ └── video
│ ├── tweetsip.mp4
│ ├── tweetsip.ogv
│ └── tweetsip.webm
├── chapter13
│ ├── journal
│ │ ├── EmblemaOne-Regular.eot
│ │ ├── EmblemaOne-Regular.svg
│ │ ├── EmblemaOne-Regular.ttf
│ │ ├── EmblemaOne-Regular.woff
│ │ ├── images
│ │ │ ├── backpack.gif
│ │ │ ├── segway1.jpg
│ │ │ └── segway2.jpg
│ │ ├── journal.css
│ │ ├── journal.html
│ │ └── table.html
│ └── journal-complete
│ ├── EmblemaOne-Regular.eot
│ ├── EmblemaOne-Regular.svg
│ ├── EmblemaOne-Regular.ttf
│ ├── EmblemaOne-Regular.woff
│ ├── images
│ │ ├── backpack.gif
│ │ ├── segway1.jpg
│ │ └── segway2.jpg
│ ├── journal.css
│ ├── journal.html
│ └── table.html
├── chapter14
│ ├── contest
│ │ ├── contest.php
│ │ └── form.html
│ └── starbuzz
│ ├── accessform.css
│ ├── accessform.html
│ ├── blog.html
│ ├── form-complete.html
│ ├── form.html
│ ├── images
│ │ ├── award.gif
│ │ ├── background.gif
│ │ ├── background2.gif
│ │ ├── bag.gif
│ │ ├── cardboard_bg.jpg
│ │ ├── coupon.gif
│ │ ├── final.jpeg
│ │ ├── header.gif
│ │ ├── headerLogo.gif
│ │ ├── headerSlogan.gif
│ │ ├── headerlogo2.gif
│ │ └── ticket.gif
│ ├── index.html
│ ├── starbuzz.css
│ ├── styledform.css
│ └── styledform.html
├── chapter15
│ └── transform.html
├── chapter2
│ ├── completelounge
│ │ ├── about
│ │ │ └── directions.html
│ │ ├── beverages
│ │ │ └── elixir.html
│ │ ├── images
│ │ │ ├── blue.jpg
│ │ │ ├── drinks.gif
│ │ │ ├── green.jpg
│ │ │ ├── lightblue.jpg
│ │ │ └── red.jpg
│ │ └── lounge.html
│ └── lounge
│ ├── blue.jpg
│ ├── directions.html
│ ├── drinks.gif
│ ├── elixir.html
│ ├── green.jpg
│ ├── lightblue.jpg
│ ├── lounge.html
│ └── red.jpg
├── chapter3
│ └── journal
│ ├── images
│ │ ├── segway1.jpg
│ │ └── segway2.jpg
│ └── journal.html
├── chapter4
│ ├── buzz
│ │ ├── header.jpg
│ │ └── index.html
│ └── starbuzz
│ ├── index.html
│ └── mission.html
├── chapter5
│ ├── lounge
│ │ ├── about
│ │ │ └── directions.html
│ │ ├── beverages
│ │ │ └── elixir.html
│ │ ├── images
│ │ │ ├── blue.jpg
│ │ │ ├── drinks.gif
│ │ │ ├── green.jpg
│ │ │ ├── lightblue.jpg
│ │ │ └── red.jpg
│ │ └── lounge.html
│ ├── mypod
│ │ ├── html
│ │ │ ├── applestore.html
│ │ │ ├── britain.html
│ │ │ ├── seattle_classic.html
│ │ │ ├── seattle_shuffle.html
│ │ │ └── seattle_video_med.html
│ │ ├── index.html
│ │ ├── index_bak.html
│ │ ├── index_thumbs.html
│ │ ├── logo
│ │ │ ├── mypod.png
│ │ │ └── mypod.psd
│ │ ├── photos
│ │ │ ├── applestore.jpg
│ │ │ ├── britain.jpg
│ │ │ ├── seattle_classic.jpg
│ │ │ ├── seattle_classic_large.jpg
│ │ │ ├── seattle_downtown.jpg
│ │ │ ├── seattle_medium.jpg
│ │ │ ├── seattle_shuffle.jpg
│ │ │ ├── seattle_video.jpg
│ │ │ └── seattle_video_med.jpg
│ │ └── thumbnails
│ │ ├── applestore.jpg
│ │ ├── britain.jpg
│ │ ├── seattle_classic.jpg
│ │ ├── seattle_downtown.jpg
│ │ ├── seattle_shuffle.jpg
│ │ └── seattle_video_med.jpg
│ ├── testimage
│ │ └── eye.jpg
│ └── trivia
│ └── trivia.html
├── chapter6
│ ├── about
│ │ └── directions.html
│ ├── beverages
│ │ └── elixir.html
│ ├── images
│ │ ├── blue.jpg
│ │ ├── drinks.gif
│ │ ├── green.jpg
│ │ ├── lightblue.jpg
│ │ └── red.jpg
│ ├── lounge-complete.html
│ └── lounge.html
├── chapter7
│ ├── about
│ │ └── directions.html
│ ├── beverages
│ │ └── elixir.html
│ ├── images
│ │ ├── blue.jpg
│ │ ├── drinks.gif
│ │ ├── green.jpg
│ │ ├── lightblue.jpg
│ │ └── red.jpg
│ ├── lounge-complete.html
│ ├── lounge.css
│ └── lounge.html
├── chapter8
│ └── journal
│ ├── EmblemaOne-Regular.eot
│ ├── EmblemaOne-Regular.svg
│ ├── EmblemaOne-Regular.ttf
│ ├── EmblemaOne-Regular.woff
│ ├── images
│ │ ├── segway1.jpg
│ │ └── segway2.jpg
│ ├── journal.css
│ └── journal.html
└── chapter9
├── lounge
│ ├── about
│ │ └── directions.html
│ ├── beverages
│ │ └── elixir.html
│ ├── images
│ │ ├── background.gif
│ │ ├── black.gif
│ │ ├── blue.gif
│ │ ├── blue.jpg
│ │ ├── chai.gif
│ │ ├── cocktail.gif
│ │ ├── drinks.gif
│ │ ├── green.gif
│ │ ├── green.jpg
│ │ ├── lightblue.gif
│ │ ├── lightblue.jpg
│ │ ├── logo.gif
│ │ ├── red.gif
│ │ ├── red.jpg
│ │ └── yellow.gif
│ ├── lounge-mobile.css
│ ├── lounge-print.css
│ └── lounge.html
└── lounge-complete
├── about
│ └── directions.html
├── beverages
│ └── elixir.html
├── images
│ ├── background.gif
│ ├── black.gif
│ ├── blue.gif
│ ├── blue.jpg
│ ├── chai.gif
│ ├── cocktail.gif
│ ├── drinks.gif
│ ├── green.gif
│ ├── green.jpg
│ ├── lightblue.gif
│ ├── lightblue.jpg
│ ├── logo.gif
│ ├── red.gif
│ ├── red.jpg
│ └── yellow.gif
├── lounge-mediaquery.css
├── lounge-mediaquery.html
├── lounge-mobile.css
├── lounge-print.css
├── lounge.css
└── lounge.html
167 directories, 298 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论