├── .gitignore ├── LICENSE ├── README.md ├── add_customer.png ├── button_change.html ├── customers.html ├── doing_stuff_with_web_things.pdf ├── even_or_odd.html ├── fancy_button.html ├── first_event.html ├── group_loop.html ├── note_it.html ├── story_writer.html └── template.html /.gitignore: -------------------------------------------------------------------------------- 1 | # Xcode 2 | # 3 | build/ 4 | *.pbxuser 5 | !default.pbxuser 6 | *.mode1v3 7 | !default.mode1v3 8 | *.mode2v3 9 | !default.mode2v3 10 | *.perspectivev3 11 | !default.perspectivev3 12 | xcuserdata 13 | *.xccheckout 14 | *.moved-aside 15 | DerivedData 16 | *.hmap 17 | *.ipa 18 | *.xcuserstate 19 | 20 | # CocoaPods 21 | # 22 | # We recommend against adding the Pods directory to your .gitignore. However 23 | # you should judge for yourself, the pros and cons are mentioned at: 24 | # http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control 25 | # 26 | # Pods/ 27 | 28 | # Carthage 29 | # 30 | # Add this line if you want to avoid checking in source code from Carthage dependencies. 31 | # Carthage/Checkouts 32 | 33 | Carthage/Build 34 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 Lee Barney 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Doing Stuff wth HTM, CSS, and JavaScript 2 | This repository contains the support materials for my Doing More with HTML, CSS, and JavaScript book. 3 | -------------------------------------------------------------------------------- /add_customer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenrab/doing_stuff_with_web_things/670452e8f7f427712a98e898746e90607259ecff/add_customer.png -------------------------------------------------------------------------------- /button_change.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Button Changing 5 | 11 | 12 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | -------------------------------------------------------------------------------- /customers.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Customers 5 | 46 | 47 | 94 | 95 | 96 | 97 |
98 |

Our Clothing Customers

99 | 100 | 101 | 102 |
103 | 104 |
105 |
106 | 107 | -------------------------------------------------------------------------------- /doing_stuff_with_web_things.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenrab/doing_stuff_with_web_things/670452e8f7f427712a98e898746e90607259ecff/doing_stuff_with_web_things.pdf -------------------------------------------------------------------------------- /even_or_odd.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Even or Odd 5 | 29 | 30 | 46 | 47 | 48 | 49 |

Even or Odd???

50 | Enter a Number: 51 | 52 |
53 | 54 | -------------------------------------------------------------------------------- /fancy_button.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Fancy Button 5 | 11 | 12 | 27 | 28 | 29 | 30 | 31 |
32 | 33 | -------------------------------------------------------------------------------- /first_event.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | First Event 5 | 10 | 11 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | -------------------------------------------------------------------------------- /group_loop.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Group Loop 5 | 33 | 34 | 50 | 51 | 52 | 53 |

Even or Odd???

54 | 55 |
56 | 57 | -------------------------------------------------------------------------------- /note_it.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Note It! 5 | 40 | 41 | 81 | 82 | 83 | 84 |
85 |

Note It!

86 | Description: 87 | 88 |
89 | 90 |
91 |
92 | 93 | -------------------------------------------------------------------------------- /story_writer.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Story Editor 5 | 21 | 22 | 29 | 30 | 31 | 32 |

Story Editor

33 | Story Name: 34 |
35 | 36 | 37 | 38 |
39 | 40 |
41 | 42 | -------------------------------------------------------------------------------- /template.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Title of Your Page 5 | 8 | 9 | 12 | 13 | 14 | 15 |

Hello

16 | 17 | --------------------------------------------------------------------------------