├── .DS_Store ├── .github └── workflows │ └── jekyll.yml ├── .gitignore ├── LICENSE ├── README.md ├── Week 2 ├── .DS_Store ├── README.md ├── css │ └── styles.css ├── img.png └── index.html ├── Week 3 ├── README.md ├── img.png ├── index.html └── styles.css ├── Week 4 ├── .DS_Store ├── README.md ├── SpeakGoodBye.js ├── SpeakHello.js ├── img.png ├── index.html └── script.js ├── Week 5 ├── .DS_Store ├── README.md ├── css │ ├── bootstrap.css │ ├── bootstrap.min.css │ └── styles.css ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── images │ ├── ajax-loader.gif │ ├── jumbotron_1200.jpg │ ├── jumbotron_768.jpg │ ├── jumbotron_992.jpg │ ├── menu-tile.jpg │ ├── menu │ │ ├── A │ │ │ ├── A.jpg │ │ │ ├── A1.jpg │ │ │ ├── A10.jpg │ │ │ ├── A11.jpg │ │ │ ├── A2.jpg │ │ │ ├── A3.jpg │ │ │ ├── A4.jpg │ │ │ ├── A5.jpg │ │ │ ├── A6.jpg │ │ │ ├── A7.jpg │ │ │ ├── A8.jpg │ │ │ └── A9.jpg │ │ ├── B │ │ │ ├── B.jpg │ │ │ ├── B1.jpg │ │ │ ├── B10.jpg │ │ │ ├── B11.jpg │ │ │ ├── B12.jpg │ │ │ ├── B13.jpg │ │ │ ├── B14.jpg │ │ │ ├── B15.jpg │ │ │ ├── B16.jpg │ │ │ ├── B2.jpg │ │ │ ├── B3.jpg │ │ │ ├── B4.jpg │ │ │ ├── B5.jpg │ │ │ ├── B6.jpg │ │ │ ├── B7.jpg │ │ │ ├── B8.jpg │ │ │ └── B9.jpg │ │ ├── C │ │ │ ├── C.jpg │ │ │ ├── C1.jpg │ │ │ ├── C10.jpg │ │ │ ├── C11.jpg │ │ │ ├── C12.jpg │ │ │ ├── C13.jpg │ │ │ ├── C14.jpg │ │ │ ├── C15.jpg │ │ │ ├── C16.jpg │ │ │ ├── C17.jpg │ │ │ ├── C18.jpg │ │ │ ├── C19.jpg │ │ │ ├── C2.jpg │ │ │ ├── C3.jpg │ │ │ ├── C4.jpg │ │ │ ├── C5.jpg │ │ │ ├── C6.jpg │ │ │ ├── C7.jpg │ │ │ ├── C8.jpg │ │ │ └── C9.jpg │ │ ├── CM │ │ │ ├── CM.jpg │ │ │ ├── CM1.jpg │ │ │ ├── CM2.jpg │ │ │ ├── CM3.jpg │ │ │ ├── CM4.jpg │ │ │ └── CM5.jpg │ │ ├── CSR │ │ │ ├── CSR.jpg │ │ │ ├── CSR1.jpg │ │ │ ├── CSR2.jpg │ │ │ ├── CSR3.jpg │ │ │ └── CSR4.jpg │ │ ├── CU │ │ │ ├── CU.jpg │ │ │ ├── CU21.jpg │ │ │ ├── CU22.jpg │ │ │ └── CU23.jpg │ │ ├── D │ │ │ ├── D.jpg │ │ │ ├── D1.jpg │ │ │ ├── D10.jpg │ │ │ ├── D11.jpg │ │ │ ├── D12.jpg │ │ │ ├── D13.jpg │ │ │ ├── D14.jpg │ │ │ ├── D15.jpg │ │ │ ├── D16.jpg │ │ │ ├── D17.jpg │ │ │ ├── D18.jpg │ │ │ ├── D2.jpg │ │ │ ├── D3.jpg │ │ │ ├── D4.jpg │ │ │ ├── D5.jpg │ │ │ ├── D6.jpg │ │ │ ├── D7.jpg │ │ │ ├── D8.jpg │ │ │ └── D9.jpg │ │ ├── DK │ │ │ ├── DK.jpg │ │ │ ├── DK1.jpg │ │ │ ├── DK2.jpg │ │ │ └── DK3.jpg │ │ ├── DS │ │ │ ├── DS.jpg │ │ │ ├── DS1.jpg │ │ │ └── DS2.jpg │ │ ├── F │ │ │ ├── F.jpg │ │ │ ├── F1.jpg │ │ │ ├── F10.jpg │ │ │ ├── F11.jpg │ │ │ ├── F12.jpg │ │ │ ├── F2.jpg │ │ │ ├── F3.jpg │ │ │ ├── F4.jpg │ │ │ ├── F5.jpg │ │ │ ├── F6.jpg │ │ │ ├── F7.jpg │ │ │ ├── F8.jpg │ │ │ └── F9.jpg │ │ ├── FR │ │ │ ├── FR.jpg │ │ │ ├── FR1.jpg │ │ │ ├── FR2.jpg │ │ │ ├── FR3.jpg │ │ │ ├── FR4.jpg │ │ │ └── FR5.jpg │ │ ├── FY │ │ │ ├── FY.jpg │ │ │ ├── FY1.jpg │ │ │ ├── FY2.jpg │ │ │ ├── FY3.jpg │ │ │ ├── FY4.jpg │ │ │ └── FY5.jpg │ │ ├── L │ │ │ ├── L.jpg │ │ │ ├── L1.jpg │ │ │ ├── L10.jpg │ │ │ ├── L11.jpg │ │ │ ├── L12.jpg │ │ │ ├── L13.jpg │ │ │ ├── L14.jpg │ │ │ ├── L15.jpg │ │ │ ├── L16.jpg │ │ │ ├── L17.jpg │ │ │ ├── L18.jpg │ │ │ ├── L19.jpg │ │ │ ├── L2.jpg │ │ │ ├── L20.jpg │ │ │ ├── L21.jpg │ │ │ ├── L22.jpg │ │ │ ├── L23.jpg │ │ │ ├── L24.jpg │ │ │ ├── L26.jpg │ │ │ ├── L27.jpg │ │ │ ├── L28.jpg │ │ │ ├── L3.jpg │ │ │ ├── L4.jpg │ │ │ ├── L5.jpg │ │ │ ├── L6.jpg │ │ │ ├── L7.jpg │ │ │ ├── L8.jpg │ │ │ └── L9.jpg │ │ ├── NF │ │ │ ├── NF.jpg │ │ │ ├── NF10.jpg │ │ │ ├── NF11.jpg │ │ │ ├── NF12.jpg │ │ │ └── NF13.jpg │ │ ├── NL │ │ │ ├── NL.jpg │ │ │ ├── NL1.jpg │ │ │ ├── NL2.jpg │ │ │ └── NL3.jpg │ │ ├── NS │ │ │ ├── NS.jpg │ │ │ ├── NS1.jpg │ │ │ ├── NS2.jpg │ │ │ ├── NS3.jpg │ │ │ └── NS4.jpg │ │ ├── PF │ │ │ ├── PF.jpg │ │ │ ├── PF1.jpg │ │ │ ├── PF2.jpg │ │ │ ├── PF3.jpg │ │ │ ├── PF4.jpg │ │ │ └── PF5.jpg │ │ ├── SO │ │ │ ├── SO.jpg │ │ │ ├── SO1.jpg │ │ │ ├── SO2.jpg │ │ │ ├── SO3.jpg │ │ │ ├── SO4.jpg │ │ │ ├── SO5.jpg │ │ │ ├── SO6.jpg │ │ │ └── SO7.jpg │ │ ├── SP │ │ │ ├── SP.jpg │ │ │ ├── SP1.jpg │ │ │ ├── SP2.jpg │ │ │ ├── SP3.jpg │ │ │ ├── SP4.jpg │ │ │ ├── SP5.jpg │ │ │ ├── SP6.jpg │ │ │ ├── SP7.jpg │ │ │ └── SP8.jpg │ │ ├── SR │ │ │ ├── SR.jpg │ │ │ ├── SR1.jpg │ │ │ ├── SR10.jpg │ │ │ ├── SR11.jpg │ │ │ ├── SR12.jpg │ │ │ ├── SR13.jpg │ │ │ ├── SR14.jpg │ │ │ ├── SR15.jpg │ │ │ ├── SR16.jpg │ │ │ ├── SR17.jpg │ │ │ ├── SR18.jpg │ │ │ ├── SR19.jpg │ │ │ ├── SR2.jpg │ │ │ ├── SR20.jpg │ │ │ ├── SR21.jpg │ │ │ ├── SR22.jpg │ │ │ ├── SR23.jpg │ │ │ ├── SR24.jpg │ │ │ ├── SR25.jpg │ │ │ ├── SR26.jpg │ │ │ ├── SR27.jpg │ │ │ ├── SR28.jpg │ │ │ ├── SR29.jpg │ │ │ ├── SR3.jpg │ │ │ ├── SR30.jpg │ │ │ ├── SR31.jpg │ │ │ ├── SR32.jpg │ │ │ ├── SR33.jpg │ │ │ ├── SR34.jpg │ │ │ ├── SR35.jpg │ │ │ ├── SR36.jpg │ │ │ ├── SR37.jpg │ │ │ ├── SR38.jpg │ │ │ ├── SR39.jpg │ │ │ ├── SR4.jpg │ │ │ ├── SR40.jpg │ │ │ ├── SR41.jpg │ │ │ ├── SR42.jpg │ │ │ ├── SR43.jpg │ │ │ ├── SR5.jpg │ │ │ ├── SR6.jpg │ │ │ ├── SR7.jpg │ │ │ ├── SR8.jpg │ │ │ └── SR9.jpg │ │ ├── SS │ │ │ ├── SS.jpg │ │ │ ├── SS1.jpg │ │ │ ├── SS10.jpg │ │ │ ├── SS11.jpg │ │ │ ├── SS12.jpg │ │ │ ├── SS13.jpg │ │ │ ├── SS14.jpg │ │ │ ├── SS2.jpg │ │ │ ├── SS3.jpg │ │ │ ├── SS4.jpg │ │ │ ├── SS5.jpg │ │ │ ├── SS6.jpg │ │ │ ├── SS7.jpg │ │ │ ├── SS8.jpg │ │ │ └── SS9.jpg │ │ ├── T │ │ │ ├── T.jpg │ │ │ ├── T1.jpg │ │ │ ├── T2.jpg │ │ │ ├── T3.jpg │ │ │ └── T4.jpg │ │ ├── V │ │ │ ├── V.jpg │ │ │ ├── V1.jpg │ │ │ ├── V2.jpg │ │ │ ├── V3.jpg │ │ │ ├── V4.jpg │ │ │ ├── V5.jpg │ │ │ ├── V6.jpg │ │ │ └── V7.jpg │ │ └── VG │ │ │ ├── VG.jpg │ │ │ ├── VG1.jpg │ │ │ ├── VG10.jpg │ │ │ ├── VG11.jpg │ │ │ ├── VG12.jpg │ │ │ ├── VG13.jpg │ │ │ ├── VG14.jpg │ │ │ ├── VG2.jpg │ │ │ ├── VG3.jpg │ │ │ ├── VG4.jpg │ │ │ ├── VG5.jpg │ │ │ ├── VG6.jpg │ │ │ ├── VG7.jpg │ │ │ ├── VG8.jpg │ │ │ └── VG9.jpg │ ├── restaurant-logo.png │ ├── restaurant-logo_large.png │ ├── restaurant-logo_medium.png │ ├── restaurant-logo_small.png │ ├── specials-tile.jpg │ └── star-k-logo.png ├── img.png ├── index.html ├── js │ ├── ajax-utils.js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── jquery-2.1.4.min.js │ ├── npm.js │ └── script.js └── snippets │ ├── categories-title-snippet.html │ ├── category-snippet.html │ ├── home-snippet.html │ ├── menu-item.html │ └── menu-items-title.html └── index.html /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/.DS_Store -------------------------------------------------------------------------------- /.github/workflows/jekyll.yml: -------------------------------------------------------------------------------- 1 | name: Jekyll site CI 2 | 3 | on: 4 | push: 5 | branches: [ master ] 6 | pull_request: 7 | branches: [ master ] 8 | 9 | jobs: 10 | build: 11 | 12 | runs-on: ubuntu-latest 13 | 14 | steps: 15 | - uses: actions/checkout@v2 16 | - name: Build the site in the jekyll/builder container 17 | run: | 18 | docker run \ 19 | -v ${{ github.workspace }}:/srv/jekyll -v ${{ github.workspace }}/_site:/srv/jekyll/_site \ 20 | jekyll/builder:latest /bin/bash -c "chmod 777 /srv/jekyll && jekyll build --future" 21 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 Harshit Ruwali 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 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Coursera-HTML-CSS-and-Javascript-for-Web-Developers 2 | Coursera's HTML, CSS, and Javascript for Web Developers course files. 3 | 4 | ## Solutions 5 | ### Week 2 6 | See the [web-page](https://harshitruwali.github.io/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/Week%202/index.html). 7 | 8 | ### Week 3 9 | See the [web-page](https://harshitruwali.github.io/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/Week%203/index.html). 10 | 11 | ### Week 4 12 | See the [web-page](https://harshitruwali.github.io/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/Week%204/index.html). 13 | 14 | #### Week 5 15 | See the [web-page](https://harshitruwali.github.io/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/Week%205/index.html). 16 | -------------------------------------------------------------------------------- /Week 2/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 2/.DS_Store -------------------------------------------------------------------------------- /Week 2/README.md: -------------------------------------------------------------------------------- 1 | # Week 2 Solutions 2 | 3 | ### Click below to view my website 4 | 5 |

6 | 7 | 8 | 9 | 10 | 11 |

12 | -------------------------------------------------------------------------------- /Week 2/css/styles.css: -------------------------------------------------------------------------------- 1 | * { 2 | box-sizing: border-box; 3 | } 4 | 5 | body{ 6 | margin: 0; 7 | padding: 0; 8 | font-family: "Comic Sans MS", cursive, sans-serif; 9 | } 10 | 11 | .row{ 12 | margin-top: 5%; 13 | margin-bottom: 5%; 14 | } 15 | 16 | h1 { 17 | margin-bottom: 15px; 18 | text-align: center; 19 | color: #ff4532; 20 | font-size: 50px; 21 | } 22 | 23 | 24 | .box{ 25 | width: 100%; 26 | overflow: none; 27 | } 28 | 29 | 30 | .content-name{ 31 | overflow: none; 32 | text-align: center; 33 | border: 4px solid black; 34 | width: 100px; 35 | height: 40px; 36 | padding: 5px; 37 | float: right; 38 | margin-right: 36px; 39 | margin-top: 0px; 40 | font-weight: bold; 41 | position: relative; 42 | } 43 | 44 | .content{ 45 | border: 5px solid black; 46 | width: 90%; 47 | height: auto; 48 | margin: 2.5%; 49 | color: black 50 | font-size: 25px; 51 | padding: 2%; 52 | padding-top: 55px; 53 | background-color: rgba(0,0,0,0.3); 54 | } 55 | 56 | .name1{ 57 | background-color: #FFB6C1; 58 | } 59 | 60 | .name2{ 61 | color: white; 62 | background-color: #FF0000; 63 | } 64 | .name3{ 65 | background-color: #FFFF00; 66 | } 67 | 68 | 69 | /********** Large devices only **********/ 70 | @media (min-width: 992px) { 71 | .col-lg-4 { 72 | float: left; 73 | width: 33.33%; 74 | } 75 | } 76 | /********** Medium devices only **********/ 77 | @media (min-width: 768px) and (max-width: 991px) { 78 | .col-md-6,.col-md-12 { 79 | float: left; 80 | } 81 | .col-md-6 { 82 | width: 50%; 83 | } 84 | .col-md-12 { 85 | margin-left: -10px; 86 | width: 100%; 87 | } 88 | .name3{ 89 | margin-right: 65px; 90 | width: 100px; 91 | } 92 | } 93 | 94 | @media (min-width: 0px) and (max-width: 767px) { 95 | .col-sm-12 { 96 | float: left; 97 | width: 100%; 98 | } 99 | .content-name{ 100 | margin-right: 30px; 101 | } 102 | } -------------------------------------------------------------------------------- /Week 2/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 2/img.png -------------------------------------------------------------------------------- /Week 2/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Responsive Layout 6 | 7 | 8 | 9 | 10 | 11 |

Our Menu

12 | 13 |
14 |
15 |

Chicken

16 |

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim.

17 |
18 |
19 | 20 |
21 |
22 |

Beef

23 |

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim.

24 |
25 |
26 | 27 |
28 |
29 |

Sushi

30 |

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim.

31 |
32 |
33 | 34 | 35 | -------------------------------------------------------------------------------- /Week 3/README.md: -------------------------------------------------------------------------------- 1 | # Week 3 Solutions 2 | 3 | ### Click below to view my website 4 | 5 |

6 | 7 | 8 | 9 | 10 | 11 |

12 | -------------------------------------------------------------------------------- /Week 3/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 3/img.png -------------------------------------------------------------------------------- /Week 3/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Module 3 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 38 | 39 |

Our Menu

40 | 41 |
42 | 43 |
44 |
45 |

Chicken

46 |

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.(Back to Top)

47 |
48 |
49 | 50 |
51 |
52 |

Beef

53 |

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.(Back to Top)

54 |
55 |
56 | 57 |
58 |
59 |

Sushi

60 |

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.(Back to Top)

61 |
62 |
63 | 64 |
65 | 66 | 67 | -------------------------------------------------------------------------------- /Week 3/styles.css: -------------------------------------------------------------------------------- 1 | .container-fluid{ 2 | margin: 0; 3 | padding: 0; 4 | } 5 | 6 | .navbar{ 7 | border-radius: 0px; 8 | background-color: rgba(0,0,0,0.8); 9 | } 10 | 11 | .navbar-brand{ 12 | font-size: 35px; 13 | color: white; 14 | padding-left: 25px; 15 | } 16 | 17 | .navbar-brand:hover{ 18 | color: white; 19 | } 20 | 21 | .nav{ 22 | margin: 0; 23 | padding: 0; 24 | } 25 | 26 | .navbar-nav{ 27 | font-size: 25px; 28 | text-align: center; 29 | margin: 0; 30 | padding: 0; 31 | } 32 | 33 | .navbar-toggle{ 34 | border: 2px solid white; 35 | margin-right: 25px; 36 | } 37 | 38 | .icon-bar{ 39 | background-color: white; 40 | } 41 | 42 | 43 | .main-title{ 44 | margin-bottom: 15px; 45 | text-align: center; 46 | color: #ff4532; 47 | font-size: 50px; 48 | font-family: "Comic Sans MS", cursive, sans-serif; 49 | font-weight: bold; 50 | } 51 | 52 | li{ 53 | box-sizing: border-box; 54 | width: 100%; 55 | } 56 | 57 | .menu-item{ 58 | padding: 0; 59 | margin: 0; 60 | width: 100%; 61 | background-color: white; 62 | border-bottom: 1px solid black; 63 | color: black; 64 | display: block; 65 | } 66 | 67 | .menu-item:hover{ 68 | background-color: rgba(0,0,0,0.9); 69 | color: rgba(0,0,0,0.4); 70 | } 71 | 72 | 73 | 74 | .row{ 75 | margin: 20px; 76 | } 77 | 78 | .content-box{ 79 | margin: 20px; 80 | width: auto; 81 | height: auto; 82 | color: black; 83 | background-color: rgba(0,0,0,0.2); 84 | font-family: "Comic Sans MS", cursive, sans-serif; 85 | padding: 20px; 86 | } 87 | 88 | .item-name{ 89 | text-align: center; 90 | font-size: 20px; 91 | font-weight: bold; 92 | } 93 | 94 | #top{ 95 | 96 | } -------------------------------------------------------------------------------- /Week 4/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 4/.DS_Store -------------------------------------------------------------------------------- /Week 4/README.md: -------------------------------------------------------------------------------- 1 | # Week 4 Solutions 2 | 3 | ### Click below to view my website 4 | 5 |

6 | 7 | 8 | 9 | 10 | 11 |

12 | -------------------------------------------------------------------------------- /Week 4/SpeakGoodBye.js: -------------------------------------------------------------------------------- 1 | // NOTE! The steps in this file are basically identical to the ones you 2 | // performed in the SpeakHello.js file. 3 | 4 | // STEP 6: Wrap the entire contents of SpeakGoodBye.js inside of an IIFE 5 | // See Lecture 52, part 2 6 | 7 | 8 | // STEP 7: Create an object, called 'byeSpeaker' to which you will attach 9 | // the "speak" method and which you will expose to the global context 10 | // See Lecture 52, part 1 11 | // var byeSpeaker = 12 | 13 | // DO NOT attach the speakWord variable to the 'byeSpeaker' object. 14 | var speakWord = "Good Bye"; 15 | 16 | // STEP 8: Rewrite the 'speak' function such that it is attached to the 17 | // byeSpeaker object instead of being a standalone function. 18 | // See Lecture 52, part 2 19 | (function(window) { 20 | var speakWord = "Good Bye"; 21 | var byeSpeaker = function (name) { 22 | console.log(speakWord + " " + name); 23 | } 24 | 25 | window.byeSpeaker = byeSpeaker; 26 | 27 | // STEP 9: Expose the 'byeSpeaker' object to the global scope. Name it 28 | // 'byeSpeaker' on the global scope as well. 29 | // xxxx.xxxx = byeSpeaker; 30 | })(window); -------------------------------------------------------------------------------- /Week 4/SpeakHello.js: -------------------------------------------------------------------------------- 1 | // STEP 2: Wrap the entire contents of SpeakHello.js inside of an IIFE 2 | // See Lecture 52, part 2 3 | 4 | 5 | // STEP 3: Create an object, called 'helloSpeaker' to which you will attach 6 | // the "speak" method and which you will expose to the global context 7 | // See Lecture 52, part 1 8 | // var helloSpeaker = 9 | 10 | // DO NOT attach the speakWord variable to the 'helloSpeaker' object. 11 | var speakWord = "Hello"; 12 | 13 | // STEP 4: Rewrite the 'speak' function such that it is attached to the 14 | // helloSpeaker object instead of being a standalone function. 15 | // See Lecture 52, part 2 16 | (function(window) { 17 | var helloSpeaker = function (name) { 18 | console.log(speakWord + " " + name); 19 | } 20 | 21 | window.helloSpeaker = helloSpeaker; 22 | 23 | // STEP 5: Expose the 'helloSpeaker' object to the global scope. Name it 24 | // 'helloSpeaker' on the global scope as well. 25 | // See Lecture 52, part 2 26 | // (Note, Step 6 will be done in the SpeakGoodBye.js file.) 27 | // xxxx.xxxx = helloSpeaker; 28 | })(window); -------------------------------------------------------------------------------- /Week 4/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 4/img.png -------------------------------------------------------------------------------- /Week 4/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Module 4 Solution Starter 6 | 9 | 10 | 11 | 12 | 13 | 14 |

Module 4 Solution Starter

15 |

pls open console to see the output of the webpage

16 | 17 | 18 | -------------------------------------------------------------------------------- /Week 4/script.js: -------------------------------------------------------------------------------- 1 | // ******************************* 2 | // START HERE IF YOU WANT A MORE CHALLENGING STARTING POINT FOR THIS ASSIGNMENT 3 | // ******************************* 4 | // 5 | // Module 4 Assignment Instructions. 6 | // 7 | // The idea of this assignment is to take an existing array of names 8 | // and then output either Hello 'Name' or Good Bye 'Name' to the console. 9 | // The program should say "Hello" to any name except names that start with a "J" 10 | // or "j", otherwise, the program should say "Good Bye". So, the final output 11 | // on the console should look like this: 12 | /* 13 | Hello Yaakov 14 | Good Bye John 15 | Good Bye Jen 16 | Good Bye Jason 17 | Hello Paul 18 | Hello Frank 19 | Hello Larry 20 | Hello Paula 21 | Hello Laura 22 | Good Bye Jim 23 | 24 | WARNING!!! WARNING!!! 25 | The code does NOT currently work! It is YOUR job to make it work 26 | as described in the requirements and the steps in order to complete this 27 | assignment. 28 | WARNING!!! WARNING!!! 29 | 30 | */ 31 | 32 | // STEP 1: 33 | // Wrap the entire contents of script.js inside of an IIFE 34 | // See Lecture 52, part 2 35 | // (Note, Step 2 will be done in the SpeakHello.js file.) 36 | 37 | var names = ["Yaakov", "John", "Jen", "Jason", "Paul", "Frank", "Larry", "Paula", "Laura", "Jim"]; 38 | 39 | // STEP 10: 40 | // Loop over the names array and say either 'Hello' or "Good Bye" 41 | // using the 'speak' method or either helloSpeaker's or byeSpeaker's 42 | // 'speak' method. 43 | // See Lecture 50, part 1 44 | for (var i = 0; i < names.length; i++) { 45 | var firstLetter = names[i].charAt(0).toLowerCase(); 46 | 47 | // STEP 11: 48 | // Retrieve the first letter of the current name in the loop. 49 | // Use the string object's 'charAt' function. Since we are looking for 50 | // names that start with either upper case or lower case 'J'/'j', call 51 | // string object's 'toLowerCase' method on the result so we can compare 52 | // to lower case character 'j' afterwards. 53 | // Look up these methods on Mozilla Developer Network web site if needed. 54 | // var firstLetter = 55 | 56 | // STEP 12: 57 | // Compare the 'firstLetter' retrieved in STEP 11 to lower case 58 | // 'j'. If the same, call byeSpeaker's 'speak' method with the current name 59 | // in the loop. Otherwise, call helloSpeaker's 'speak' method with the current 60 | // name in the loop. 61 | if (firstLetter === 'j') { 62 | byeSpeaker(names[i]); 63 | } 64 | else { 65 | helloSpeaker(names[i]); 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /Week 5/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/.DS_Store -------------------------------------------------------------------------------- /Week 5/README.md: -------------------------------------------------------------------------------- 1 | # Week 5 Solutions 2 | 3 | ### Click below to view my website 4 | 5 |

6 | 7 | 8 | 9 | 10 | 11 |

12 | -------------------------------------------------------------------------------- /Week 5/css/styles.css: -------------------------------------------------------------------------------- 1 | body { 2 | font-size: 16px; 3 | color: #fff; 4 | background-color: #61122f; 5 | font-family: 'Oxygen', sans-serif; 6 | } 7 | 8 | /** HEADER **/ 9 | #header-nav { 10 | background-color: #f6b319; 11 | border-radius: 0; 12 | border: 0; 13 | } 14 | 15 | #logo-img { 16 | background: url('../images/restaurant-logo_large.png') no-repeat; 17 | width: 150px; 18 | height: 150px; 19 | margin: 10px 15px 10px 0; 20 | } 21 | 22 | .navbar-brand { 23 | padding-top: 25px; 24 | } 25 | .navbar-brand h1 { /* Restaurant name */ 26 | font-family: 'Lora', serif; 27 | color: #557c3e; 28 | font-size: 1.5em; 29 | text-transform: uppercase; 30 | font-weight: bold; 31 | text-shadow: 1px 1px 1px #222; 32 | margin-top: 0; 33 | margin-bottom: 0; 34 | line-height: .75; 35 | } 36 | .navbar-brand a:hover, .navbar-brand a:focus { 37 | text-decoration: none; 38 | } 39 | .navbar-brand p { /* Kosher cert */ 40 | color: #000; 41 | text-transform: uppercase; 42 | font-size: .7em; 43 | margin-top: 15px; 44 | } 45 | .navbar-brand p span { /* Star-K */ 46 | vertical-align: middle; 47 | } 48 | 49 | #nav-list { 50 | margin-top: 10px; 51 | } 52 | #nav-list a { 53 | color: #951C49; 54 | text-align: center; 55 | } 56 | #nav-list a:hover { 57 | background: #E7E7E7; 58 | } 59 | #nav-list a span { 60 | font-size: 1.8em; 61 | } 62 | 63 | #phone { 64 | margin-top: 5px; 65 | } 66 | #phone a { /* Phone number */ 67 | text-align: right; 68 | padding-bottom: 0; 69 | } 70 | #phone div { /* We Deliver */ 71 | color: #557c3e; 72 | text-align: right; 73 | padding-right: 15px; 74 | } 75 | 76 | .navbar-header button.navbar-toggle, .navbar-header .icon-bar { 77 | border: 1px solid #61122f; 78 | } 79 | .navbar-header button.navbar-toggle { 80 | clear: both; 81 | margin-top: -30px; 82 | } 83 | /* END HEADER */ 84 | 85 | /* FOOTER */ 86 | .panel-footer { 87 | margin-top: 30px; 88 | padding-top: 35px; 89 | padding-bottom: 30px; 90 | background-color: #222; 91 | border-top: 0; 92 | } 93 | .panel-footer div.row { 94 | margin-bottom: 35px; 95 | } 96 | #hours, #address { 97 | line-height: 2; 98 | } 99 | #hours > span, #address > span { 100 | font-size: 1.3em; 101 | } 102 | #address p { 103 | color: #557c3e; 104 | font-size: .8em; 105 | line-height: 1.8; 106 | } 107 | #testimonials { 108 | font-style: italic; 109 | } 110 | #testimonials p:nth-child(2) { 111 | margin-top: 25px; 112 | } 113 | /* END FOOTER */ 114 | 115 | 116 | 117 | /* HOME PAGE */ 118 | .container .jumbotron { 119 | box-shadow: 0 0 50px #3F0C1F; 120 | border: 2px solid #3F0C1F; 121 | } 122 | 123 | #menu-tile, #specials-tile, #map-tile { 124 | height: 250px; 125 | width: 100%; 126 | margin-bottom: 15px; 127 | position: relative; 128 | border: 2px solid #3F0C1F; 129 | overflow: hidden; 130 | } 131 | #menu-tile:hover, #specials-tile:hover, #map-tile:hover { 132 | box-shadow: 0 1px 5px 1px #cccccc; 133 | } 134 | #menu-tile { 135 | background: url('../images/menu-tile.jpg') no-repeat; 136 | background-position: center; 137 | } 138 | #specials-tile { 139 | background: url('../images/specials-tile.jpg') no-repeat; 140 | background-position: center; 141 | } 142 | #menu-tile span, #specials-tile span, #map-tile span { 143 | position: absolute; 144 | bottom: 0; 145 | right: 0; 146 | width: 100%; 147 | text-align: center; 148 | font-size: 1.6em; 149 | text-transform: uppercase; 150 | background-color: #000; 151 | color: #fff; 152 | opacity: .8; 153 | } 154 | /* END HOME PAGE */ 155 | 156 | /* MENU CATEGORIES PAGE */ 157 | .category-tile { 158 | position: relative; 159 | border: 2px solid #3F0C1F; 160 | overflow: hidden; 161 | width: 200px; 162 | height: 200px; 163 | margin: 0 auto 15px; 164 | } 165 | .category-tile span { 166 | position: absolute; 167 | bottom: 0; 168 | right: 0; 169 | width: 100%; 170 | text-align: center; 171 | font-size: 1.2em; 172 | text-transform: uppercase; 173 | background-color: #000; 174 | color: #fff; 175 | opacity: .8; 176 | } 177 | .category-tile:hover { 178 | box-shadow: 0 1px 5px 1px #cccccc; 179 | } 180 | 181 | #menu-categories-title + div { 182 | margin-bottom: 50px; 183 | } 184 | /* END MENU CATEGORIES PAGE */ 185 | 186 | /* SINGLE CATEGORY PAGE */ 187 | .menu-item-tile { 188 | margin-bottom: 25px; 189 | } 190 | .menu-item-tile hr { 191 | width: 80%; 192 | } 193 | .menu-item-tile .menu-item-price { 194 | font-size: 1.1em; 195 | text-align: right; 196 | margin-top: -15px; 197 | margin-right: -15px; 198 | } 199 | .menu-item-tile .menu-item-price span { 200 | font-size: .6em; 201 | } 202 | .menu-item-photo { 203 | position: relative; 204 | border: 2px solid #3F0C1F; 205 | overflow: hidden; 206 | padding: 0; 207 | margin-right: -15px; 208 | margin-left: auto; 209 | margin-bottom: 20px; 210 | max-width: 250px; 211 | } 212 | .menu-item-photo div { 213 | position: absolute; 214 | bottom: 0; 215 | right: 0; 216 | width: 80px; 217 | background-color: #557c3e; 218 | text-align: center; 219 | } 220 | .menu-item-description { 221 | padding-right: 30px; 222 | } 223 | h3.menu-item-title { 224 | margin: 0 0 10px; 225 | } 226 | .menu-item-details { 227 | font-size: .9em; 228 | font-style: italic; 229 | } 230 | /* END SINGLE CATEGORY PAGE */ 231 | 232 | 233 | /********** Large devices only **********/ 234 | @media (min-width: 1200px) { 235 | .container .jumbotron { 236 | background: url('../images/jumbotron_1200.jpg') no-repeat; 237 | height: 675px; 238 | } 239 | } 240 | 241 | /********** Medium devices only **********/ 242 | @media (min-width: 992px) and (max-width: 1199px) { 243 | /* Header */ 244 | #logo-img { 245 | background: url('../images/restaurant-logo_medium.png') no-repeat; 246 | width: 100px; 247 | height: 100px; 248 | margin: 5px 5px 5px 0; 249 | } 250 | /* End Header */ 251 | 252 | /* Home Page */ 253 | .container .jumbotron { 254 | background: url('../images/jumbotron_992.jpg') no-repeat; 255 | height: 558px; 256 | } 257 | /* End Home Page */ 258 | } 259 | 260 | /********** Small devices only **********/ 261 | @media (min-width: 768px) and (max-width: 991px) { 262 | /* Home Page */ 263 | .container .jumbotron { 264 | background: url('../images/jumbotron_768.jpg') no-repeat; 265 | height: 432px; 266 | } 267 | /* End Home Page */ 268 | } 269 | 270 | /********** Extra small devices only **********/ 271 | @media (max-width: 767px) { 272 | /* Header */ 273 | .navbar-brand { 274 | padding-top: 10px; 275 | height: 80px; 276 | } 277 | .navbar-brand h1 { /* Restaurant name */ 278 | padding-top: 10px; 279 | font-size: 5vw; /* 1vw = 1% of viewport width */ 280 | } 281 | .navbar-brand p { /* Kosher cert */ 282 | font-size: .6em; 283 | margin-top: 12px; 284 | } 285 | .navbar-brand p img { /* Star-K */ 286 | height: 20px; 287 | } 288 | 289 | #collapsable-nav a { /* Collapsed nav menu text */ 290 | font-size: 1.2em; 291 | } 292 | #collapsable-nav a span { /* Collapsed nav menu glyph */ 293 | font-size: 1em; 294 | margin-right: 5px; 295 | } 296 | 297 | #call-btn > a { 298 | font-size: 1.5em; 299 | display: block; 300 | margin: 0 20px; 301 | padding: 10px; 302 | border: 2px solid #fff; 303 | background-color: #f6b319; 304 | color: #951c49; 305 | } 306 | #xs-deliver { 307 | margin-top: 5px; 308 | font-size: .7em; 309 | letter-spacing: .1em; 310 | text-transform: uppercase; 311 | } 312 | /* End Header */ 313 | 314 | /* Footer */ 315 | .panel-footer section { 316 | margin-bottom: 30px; 317 | text-align: center; 318 | } 319 | .panel-footer section:nth-child(3) { 320 | margin-bottom: 0; /* margin already exists on the whole row */ 321 | } 322 | .panel-footer section hr { 323 | width: 50%; 324 | } 325 | /* End Footer */ 326 | 327 | /* Home Page */ 328 | .container .jumbotron { 329 | margin-top: 30px; 330 | padding: 0; 331 | } 332 | #menu-tile, #specials-tile { 333 | width: 360px; 334 | margin: 0 auto 15px; 335 | } 336 | 337 | .menu-item-photo { 338 | margin-right: auto; 339 | } 340 | .menu-item-tile .menu-item-price { 341 | text-align: center; 342 | } 343 | .menu-item-description { 344 | text-align: center;; 345 | } 346 | } 347 | 348 | 349 | /********** Super extra small devices Only :-) (e.g., iPhone 4) **********/ 350 | @media (max-width: 479px) { 351 | /* Header */ 352 | .navbar-brand h1 { /* Restaurant name */ 353 | padding-top: 5px; 354 | font-size: 6vw; 355 | } 356 | /* End Header */ 357 | 358 | /* Home page */ 359 | #menu-tile, #specials-tile { 360 | width: 280px; 361 | margin: 0 auto 15px; 362 | } 363 | 364 | .col-xxs-12 { 365 | position: relative; 366 | min-height: 1px; 367 | padding-right: 15px; 368 | padding-left: 15px; 369 | float: left; 370 | width: 100%; 371 | } 372 | } 373 | 374 | 375 | 376 | -------------------------------------------------------------------------------- /Week 5/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Week 5/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Week 5/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Week 5/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /Week 5/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/ajax-loader.gif -------------------------------------------------------------------------------- /Week 5/images/jumbotron_1200.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/jumbotron_1200.jpg -------------------------------------------------------------------------------- /Week 5/images/jumbotron_768.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/jumbotron_768.jpg -------------------------------------------------------------------------------- /Week 5/images/jumbotron_992.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/jumbotron_992.jpg -------------------------------------------------------------------------------- /Week 5/images/menu-tile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu-tile.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/A/A.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/A/A.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/A/A1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/A/A1.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/A/A10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/A/A10.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/A/A11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/A/A11.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/A/A2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/A/A2.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/A/A3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/A/A3.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/A/A4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/A/A4.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/A/A5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/A/A5.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/A/A6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/A/A6.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/A/A7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/A/A7.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/A/A8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/A/A8.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/A/A9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/A/A9.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/B/B.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/B/B.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/B/B1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/B/B1.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/B/B10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/B/B10.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/B/B11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/B/B11.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/B/B12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/B/B12.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/B/B13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/B/B13.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/B/B14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/B/B14.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/B/B15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/B/B15.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/B/B16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/B/B16.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/B/B2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/B/B2.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/B/B3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/B/B3.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/B/B4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/B/B4.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/B/B5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/B/B5.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/B/B6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/B/B6.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/B/B7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/B/B7.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/B/B8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/B/B8.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/B/B9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/B/B9.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/C/C.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/C/C.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/C/C1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/C/C1.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/C/C10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/C/C10.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/C/C11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/C/C11.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/C/C12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/C/C12.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/C/C13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/C/C13.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/C/C14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/C/C14.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/C/C15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/C/C15.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/C/C16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/C/C16.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/C/C17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/C/C17.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/C/C18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/C/C18.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/C/C19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/C/C19.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/C/C2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/C/C2.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/C/C3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/C/C3.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/C/C4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/C/C4.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/C/C5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/C/C5.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/C/C6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/C/C6.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/C/C7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/C/C7.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/C/C8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/C/C8.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/C/C9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/C/C9.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/CM/CM.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/CM/CM.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/CM/CM1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/CM/CM1.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/CM/CM2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/CM/CM2.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/CM/CM3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/CM/CM3.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/CM/CM4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/CM/CM4.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/CM/CM5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/CM/CM5.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/CSR/CSR.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/CSR/CSR.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/CSR/CSR1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/CSR/CSR1.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/CSR/CSR2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/CSR/CSR2.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/CSR/CSR3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/CSR/CSR3.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/CSR/CSR4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/CSR/CSR4.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/CU/CU.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/CU/CU.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/CU/CU21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/CU/CU21.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/CU/CU22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/CU/CU22.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/CU/CU23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/CU/CU23.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/D/D.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/D/D.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/D/D1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/D/D1.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/D/D10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/D/D10.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/D/D11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/D/D11.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/D/D12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/D/D12.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/D/D13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/D/D13.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/D/D14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/D/D14.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/D/D15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/D/D15.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/D/D16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/D/D16.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/D/D17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/D/D17.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/D/D18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/D/D18.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/D/D2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/D/D2.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/D/D3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/D/D3.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/D/D4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/D/D4.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/D/D5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/D/D5.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/D/D6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/D/D6.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/D/D7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/D/D7.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/D/D8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/D/D8.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/D/D9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/D/D9.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/DK/DK.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/DK/DK.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/DK/DK1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/DK/DK1.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/DK/DK2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/DK/DK2.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/DK/DK3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/DK/DK3.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/DS/DS.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/DS/DS.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/DS/DS1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/DS/DS1.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/DS/DS2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/DS/DS2.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/F/F.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/F/F.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/F/F1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/F/F1.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/F/F10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/F/F10.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/F/F11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/F/F11.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/F/F12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/F/F12.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/F/F2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/F/F2.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/F/F3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/F/F3.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/F/F4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/F/F4.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/F/F5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/F/F5.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/F/F6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/F/F6.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/F/F7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/F/F7.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/F/F8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/F/F8.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/F/F9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/F/F9.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/FR/FR.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/FR/FR.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/FR/FR1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/FR/FR1.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/FR/FR2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/FR/FR2.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/FR/FR3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/FR/FR3.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/FR/FR4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/FR/FR4.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/FR/FR5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/FR/FR5.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/FY/FY.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/FY/FY.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/FY/FY1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/FY/FY1.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/FY/FY2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/FY/FY2.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/FY/FY3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/FY/FY3.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/FY/FY4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/FY/FY4.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/FY/FY5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/FY/FY5.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/L/L.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/L/L.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/L/L1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/L/L1.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/L/L10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/L/L10.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/L/L11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/L/L11.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/L/L12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/L/L12.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/L/L13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/L/L13.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/L/L14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/L/L14.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/L/L15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/L/L15.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/L/L16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/L/L16.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/L/L17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/L/L17.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/L/L18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/L/L18.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/L/L19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/L/L19.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/L/L2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/L/L2.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/L/L20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/L/L20.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/L/L21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/L/L21.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/L/L22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/L/L22.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/L/L23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/L/L23.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/L/L24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/L/L24.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/L/L26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/L/L26.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/L/L27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/L/L27.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/L/L28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/L/L28.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/L/L3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/L/L3.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/L/L4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/L/L4.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/L/L5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/L/L5.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/L/L6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/L/L6.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/L/L7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/L/L7.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/L/L8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/L/L8.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/L/L9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/L/L9.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/NF/NF.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/NF/NF.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/NF/NF10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/NF/NF10.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/NF/NF11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/NF/NF11.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/NF/NF12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/NF/NF12.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/NF/NF13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/NF/NF13.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/NL/NL.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/NL/NL.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/NL/NL1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/NL/NL1.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/NL/NL2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/NL/NL2.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/NL/NL3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/NL/NL3.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/NS/NS.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/NS/NS.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/NS/NS1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/NS/NS1.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/NS/NS2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/NS/NS2.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/NS/NS3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/NS/NS3.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/NS/NS4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/NS/NS4.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/PF/PF.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/PF/PF.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/PF/PF1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/PF/PF1.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/PF/PF2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/PF/PF2.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/PF/PF3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/PF/PF3.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/PF/PF4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/PF/PF4.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/PF/PF5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/PF/PF5.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SO/SO.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SO/SO.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SO/SO1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SO/SO1.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SO/SO2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SO/SO2.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SO/SO3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SO/SO3.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SO/SO4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SO/SO4.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SO/SO5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SO/SO5.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SO/SO6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SO/SO6.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SO/SO7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SO/SO7.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SP/SP.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SP/SP.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SP/SP1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SP/SP1.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SP/SP2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SP/SP2.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SP/SP3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SP/SP3.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SP/SP4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SP/SP4.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SP/SP5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SP/SP5.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SP/SP6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SP/SP6.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SP/SP7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SP/SP7.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SP/SP8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SP/SP8.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SR/SR.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SR/SR.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SR/SR1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SR/SR1.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SR/SR10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SR/SR10.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SR/SR11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SR/SR11.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SR/SR12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SR/SR12.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SR/SR13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SR/SR13.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SR/SR14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SR/SR14.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SR/SR15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SR/SR15.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SR/SR16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SR/SR16.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SR/SR17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SR/SR17.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SR/SR18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SR/SR18.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SR/SR19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SR/SR19.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SR/SR2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SR/SR2.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SR/SR20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SR/SR20.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SR/SR21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SR/SR21.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SR/SR22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SR/SR22.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SR/SR23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SR/SR23.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SR/SR24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SR/SR24.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SR/SR25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SR/SR25.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SR/SR26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SR/SR26.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SR/SR27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SR/SR27.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SR/SR28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SR/SR28.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SR/SR29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SR/SR29.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SR/SR3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SR/SR3.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SR/SR30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SR/SR30.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SR/SR31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SR/SR31.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SR/SR32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SR/SR32.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SR/SR33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SR/SR33.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SR/SR34.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SR/SR34.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SR/SR35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SR/SR35.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SR/SR36.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SR/SR36.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SR/SR37.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SR/SR37.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SR/SR38.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SR/SR38.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SR/SR39.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SR/SR39.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SR/SR4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SR/SR4.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SR/SR40.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SR/SR40.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SR/SR41.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SR/SR41.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SR/SR42.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SR/SR42.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SR/SR43.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SR/SR43.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SR/SR5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SR/SR5.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SR/SR6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SR/SR6.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SR/SR7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SR/SR7.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SR/SR8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SR/SR8.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SR/SR9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SR/SR9.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SS/SS.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SS/SS.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SS/SS1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SS/SS1.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SS/SS10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SS/SS10.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SS/SS11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SS/SS11.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SS/SS12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SS/SS12.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SS/SS13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SS/SS13.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SS/SS14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SS/SS14.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SS/SS2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SS/SS2.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SS/SS3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SS/SS3.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SS/SS4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SS/SS4.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SS/SS5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SS/SS5.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SS/SS6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SS/SS6.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SS/SS7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SS/SS7.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SS/SS8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SS/SS8.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/SS/SS9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/SS/SS9.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/T/T.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/T/T.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/T/T1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/T/T1.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/T/T2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/T/T2.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/T/T3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/T/T3.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/T/T4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/T/T4.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/V/V.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/V/V.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/V/V1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/V/V1.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/V/V2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/V/V2.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/V/V3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/V/V3.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/V/V4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/V/V4.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/V/V5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/V/V5.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/V/V6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/V/V6.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/V/V7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/V/V7.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/VG/VG.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/VG/VG.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/VG/VG1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/VG/VG1.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/VG/VG10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/VG/VG10.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/VG/VG11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/VG/VG11.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/VG/VG12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/VG/VG12.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/VG/VG13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/VG/VG13.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/VG/VG14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/VG/VG14.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/VG/VG2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/VG/VG2.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/VG/VG3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/VG/VG3.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/VG/VG4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/VG/VG4.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/VG/VG5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/VG/VG5.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/VG/VG6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/VG/VG6.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/VG/VG7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/VG/VG7.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/VG/VG8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/VG/VG8.jpg -------------------------------------------------------------------------------- /Week 5/images/menu/VG/VG9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/menu/VG/VG9.jpg -------------------------------------------------------------------------------- /Week 5/images/restaurant-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/restaurant-logo.png -------------------------------------------------------------------------------- /Week 5/images/restaurant-logo_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/restaurant-logo_large.png -------------------------------------------------------------------------------- /Week 5/images/restaurant-logo_medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/restaurant-logo_medium.png -------------------------------------------------------------------------------- /Week 5/images/restaurant-logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/restaurant-logo_small.png -------------------------------------------------------------------------------- /Week 5/images/specials-tile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/specials-tile.jpg -------------------------------------------------------------------------------- /Week 5/images/star-k-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/images/star-k-logo.png -------------------------------------------------------------------------------- /Week 5/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshitRuwali/Coursera-HTML-CSS-and-Javascript-for-Web-Developers/15182d8efff16e409cbc46850d16367b3eb6d214/Week 5/img.png -------------------------------------------------------------------------------- /Week 5/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | David Chu's China Bistro 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 64 |
65 | 66 |
67 | 68 | 69 | 410-602-5008 70 | 71 |
72 |
* We Deliver
73 | 74 |
75 | 76 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | -------------------------------------------------------------------------------- /Week 5/js/ajax-utils.js: -------------------------------------------------------------------------------- 1 | (function (global) { 2 | 3 | // Set up a namespace for our utility 4 | var ajaxUtils = {}; 5 | 6 | 7 | // Returns an HTTP request object 8 | function getRequestObject() { 9 | if (window.XMLHttpRequest) { 10 | return (new XMLHttpRequest()); 11 | } 12 | else if (window.ActiveXObject) { 13 | // For very old IE browsers (optional) 14 | return (new ActiveXObject("Microsoft.XMLHTTP")); 15 | } 16 | else { 17 | global.alert("Ajax is not supported!"); 18 | return(null); 19 | } 20 | } 21 | 22 | 23 | // Makes an Ajax GET request to 'requestUrl' 24 | ajaxUtils.sendGetRequest = 25 | function(requestUrl, responseHandler, isJsonResponse) { 26 | var request = getRequestObject(); 27 | request.onreadystatechange = 28 | function() { 29 | handleResponse(request, 30 | responseHandler, 31 | isJsonResponse); 32 | }; 33 | request.open("GET", requestUrl, true); 34 | request.send(null); // for POST only 35 | }; 36 | 37 | 38 | // Only calls user provided 'responseHandler' 39 | // function if response is ready 40 | // and not an error 41 | function handleResponse(request, 42 | responseHandler, 43 | isJsonResponse) { 44 | if ((request.readyState == 4) && 45 | (request.status == 200)) { 46 | 47 | // Default to isJsonResponse = true 48 | if (isJsonResponse == undefined) { 49 | isJsonResponse = true; 50 | } 51 | 52 | if (isJsonResponse) { 53 | responseHandler(JSON.parse(request.responseText)); 54 | } 55 | else { 56 | responseHandler(request.responseText); 57 | } 58 | } 59 | } 60 | 61 | 62 | // Expose utility to the global object 63 | global.$ajaxUtils = ajaxUtils; 64 | 65 | 66 | })(window); 67 | 68 | -------------------------------------------------------------------------------- /Week 5/js/bootstrap.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap v3.3.6 (http://getbootstrap.com) 3 | * Copyright 2011-2015 Twitter, Inc. 4 | * Licensed under the MIT license 5 | */ 6 | if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(a){"use strict";var b=a.fn.jquery.split(" ")[0].split(".");if(b[0]<2&&b[1]<9||1==b[0]&&9==b[1]&&b[2]<1||b[0]>2)throw new Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher, but lower than version 3")}(jQuery),+function(a){"use strict";function b(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var c in b)if(void 0!==a.style[c])return{end:b[c]};return!1}a.fn.emulateTransitionEnd=function(b){var c=!1,d=this;a(this).one("bsTransitionEnd",function(){c=!0});var e=function(){c||a(d).trigger(a.support.transition.end)};return setTimeout(e,b),this},a(function(){a.support.transition=b(),a.support.transition&&(a.event.special.bsTransitionEnd={bindType:a.support.transition.end,delegateType:a.support.transition.end,handle:function(b){return a(b.target).is(this)?b.handleObj.handler.apply(this,arguments):void 0}})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var c=a(this),e=c.data("bs.alert");e||c.data("bs.alert",e=new d(this)),"string"==typeof b&&e[b].call(c)})}var c='[data-dismiss="alert"]',d=function(b){a(b).on("click",c,this.close)};d.VERSION="3.3.6",d.TRANSITION_DURATION=150,d.prototype.close=function(b){function c(){g.detach().trigger("closed.bs.alert").remove()}var e=a(this),f=e.attr("data-target");f||(f=e.attr("href"),f=f&&f.replace(/.*(?=#[^\s]*$)/,""));var g=a(f);b&&b.preventDefault(),g.length||(g=e.closest(".alert")),g.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(g.removeClass("in"),a.support.transition&&g.hasClass("fade")?g.one("bsTransitionEnd",c).emulateTransitionEnd(d.TRANSITION_DURATION):c())};var e=a.fn.alert;a.fn.alert=b,a.fn.alert.Constructor=d,a.fn.alert.noConflict=function(){return a.fn.alert=e,this},a(document).on("click.bs.alert.data-api",c,d.prototype.close)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.button"),f="object"==typeof b&&b;e||d.data("bs.button",e=new c(this,f)),"toggle"==b?e.toggle():b&&e.setState(b)})}var c=function(b,d){this.$element=a(b),this.options=a.extend({},c.DEFAULTS,d),this.isLoading=!1};c.VERSION="3.3.6",c.DEFAULTS={loadingText:"loading..."},c.prototype.setState=function(b){var c="disabled",d=this.$element,e=d.is("input")?"val":"html",f=d.data();b+="Text",null==f.resetText&&d.data("resetText",d[e]()),setTimeout(a.proxy(function(){d[e](null==f[b]?this.options[b]:f[b]),"loadingText"==b?(this.isLoading=!0,d.addClass(c).attr(c,c)):this.isLoading&&(this.isLoading=!1,d.removeClass(c).removeAttr(c))},this),0)},c.prototype.toggle=function(){var a=!0,b=this.$element.closest('[data-toggle="buttons"]');if(b.length){var c=this.$element.find("input");"radio"==c.prop("type")?(c.prop("checked")&&(a=!1),b.find(".active").removeClass("active"),this.$element.addClass("active")):"checkbox"==c.prop("type")&&(c.prop("checked")!==this.$element.hasClass("active")&&(a=!1),this.$element.toggleClass("active")),c.prop("checked",this.$element.hasClass("active")),a&&c.trigger("change")}else this.$element.attr("aria-pressed",!this.$element.hasClass("active")),this.$element.toggleClass("active")};var d=a.fn.button;a.fn.button=b,a.fn.button.Constructor=c,a.fn.button.noConflict=function(){return a.fn.button=d,this},a(document).on("click.bs.button.data-api",'[data-toggle^="button"]',function(c){var d=a(c.target);d.hasClass("btn")||(d=d.closest(".btn")),b.call(d,"toggle"),a(c.target).is('input[type="radio"]')||a(c.target).is('input[type="checkbox"]')||c.preventDefault()}).on("focus.bs.button.data-api blur.bs.button.data-api",'[data-toggle^="button"]',function(b){a(b.target).closest(".btn").toggleClass("focus",/^focus(in)?$/.test(b.type))})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.carousel"),f=a.extend({},c.DEFAULTS,d.data(),"object"==typeof b&&b),g="string"==typeof b?b:f.slide;e||d.data("bs.carousel",e=new c(this,f)),"number"==typeof b?e.to(b):g?e[g]():f.interval&&e.pause().cycle()})}var c=function(b,c){this.$element=a(b),this.$indicators=this.$element.find(".carousel-indicators"),this.options=c,this.paused=null,this.sliding=null,this.interval=null,this.$active=null,this.$items=null,this.options.keyboard&&this.$element.on("keydown.bs.carousel",a.proxy(this.keydown,this)),"hover"==this.options.pause&&!("ontouchstart"in document.documentElement)&&this.$element.on("mouseenter.bs.carousel",a.proxy(this.pause,this)).on("mouseleave.bs.carousel",a.proxy(this.cycle,this))};c.VERSION="3.3.6",c.TRANSITION_DURATION=600,c.DEFAULTS={interval:5e3,pause:"hover",wrap:!0,keyboard:!0},c.prototype.keydown=function(a){if(!/input|textarea/i.test(a.target.tagName)){switch(a.which){case 37:this.prev();break;case 39:this.next();break;default:return}a.preventDefault()}},c.prototype.cycle=function(b){return b||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},c.prototype.getItemIndex=function(a){return this.$items=a.parent().children(".item"),this.$items.index(a||this.$active)},c.prototype.getItemForDirection=function(a,b){var c=this.getItemIndex(b),d="prev"==a&&0===c||"next"==a&&c==this.$items.length-1;if(d&&!this.options.wrap)return b;var e="prev"==a?-1:1,f=(c+e)%this.$items.length;return this.$items.eq(f)},c.prototype.to=function(a){var b=this,c=this.getItemIndex(this.$active=this.$element.find(".item.active"));return a>this.$items.length-1||0>a?void 0:this.sliding?this.$element.one("slid.bs.carousel",function(){b.to(a)}):c==a?this.pause().cycle():this.slide(a>c?"next":"prev",this.$items.eq(a))},c.prototype.pause=function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition&&(this.$element.trigger(a.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},c.prototype.next=function(){return this.sliding?void 0:this.slide("next")},c.prototype.prev=function(){return this.sliding?void 0:this.slide("prev")},c.prototype.slide=function(b,d){var e=this.$element.find(".item.active"),f=d||this.getItemForDirection(b,e),g=this.interval,h="next"==b?"left":"right",i=this;if(f.hasClass("active"))return this.sliding=!1;var j=f[0],k=a.Event("slide.bs.carousel",{relatedTarget:j,direction:h});if(this.$element.trigger(k),!k.isDefaultPrevented()){if(this.sliding=!0,g&&this.pause(),this.$indicators.length){this.$indicators.find(".active").removeClass("active");var l=a(this.$indicators.children()[this.getItemIndex(f)]);l&&l.addClass("active")}var m=a.Event("slid.bs.carousel",{relatedTarget:j,direction:h});return a.support.transition&&this.$element.hasClass("slide")?(f.addClass(b),f[0].offsetWidth,e.addClass(h),f.addClass(h),e.one("bsTransitionEnd",function(){f.removeClass([b,h].join(" ")).addClass("active"),e.removeClass(["active",h].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger(m)},0)}).emulateTransitionEnd(c.TRANSITION_DURATION)):(e.removeClass("active"),f.addClass("active"),this.sliding=!1,this.$element.trigger(m)),g&&this.cycle(),this}};var d=a.fn.carousel;a.fn.carousel=b,a.fn.carousel.Constructor=c,a.fn.carousel.noConflict=function(){return a.fn.carousel=d,this};var e=function(c){var d,e=a(this),f=a(e.attr("data-target")||(d=e.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""));if(f.hasClass("carousel")){var g=a.extend({},f.data(),e.data()),h=e.attr("data-slide-to");h&&(g.interval=!1),b.call(f,g),h&&f.data("bs.carousel").to(h),c.preventDefault()}};a(document).on("click.bs.carousel.data-api","[data-slide]",e).on("click.bs.carousel.data-api","[data-slide-to]",e),a(window).on("load",function(){a('[data-ride="carousel"]').each(function(){var c=a(this);b.call(c,c.data())})})}(jQuery),+function(a){"use strict";function b(b){var c,d=b.attr("data-target")||(c=b.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,"");return a(d)}function c(b){return this.each(function(){var c=a(this),e=c.data("bs.collapse"),f=a.extend({},d.DEFAULTS,c.data(),"object"==typeof b&&b);!e&&f.toggle&&/show|hide/.test(b)&&(f.toggle=!1),e||c.data("bs.collapse",e=new d(this,f)),"string"==typeof b&&e[b]()})}var d=function(b,c){this.$element=a(b),this.options=a.extend({},d.DEFAULTS,c),this.$trigger=a('[data-toggle="collapse"][href="#'+b.id+'"],[data-toggle="collapse"][data-target="#'+b.id+'"]'),this.transitioning=null,this.options.parent?this.$parent=this.getParent():this.addAriaAndCollapsedClass(this.$element,this.$trigger),this.options.toggle&&this.toggle()};d.VERSION="3.3.6",d.TRANSITION_DURATION=350,d.DEFAULTS={toggle:!0},d.prototype.dimension=function(){var a=this.$element.hasClass("width");return a?"width":"height"},d.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var b,e=this.$parent&&this.$parent.children(".panel").children(".in, .collapsing");if(!(e&&e.length&&(b=e.data("bs.collapse"),b&&b.transitioning))){var f=a.Event("show.bs.collapse");if(this.$element.trigger(f),!f.isDefaultPrevented()){e&&e.length&&(c.call(e,"hide"),b||e.data("bs.collapse",null));var g=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[g](0).attr("aria-expanded",!0),this.$trigger.removeClass("collapsed").attr("aria-expanded",!0),this.transitioning=1;var h=function(){this.$element.removeClass("collapsing").addClass("collapse in")[g](""),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return h.call(this);var i=a.camelCase(["scroll",g].join("-"));this.$element.one("bsTransitionEnd",a.proxy(h,this)).emulateTransitionEnd(d.TRANSITION_DURATION)[g](this.$element[0][i])}}}},d.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var b=a.Event("hide.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.dimension();this.$element[c](this.$element[c]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse in").attr("aria-expanded",!1),this.$trigger.addClass("collapsed").attr("aria-expanded",!1),this.transitioning=1;var e=function(){this.transitioning=0,this.$element.removeClass("collapsing").addClass("collapse").trigger("hidden.bs.collapse")};return a.support.transition?void this.$element[c](0).one("bsTransitionEnd",a.proxy(e,this)).emulateTransitionEnd(d.TRANSITION_DURATION):e.call(this)}}},d.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()},d.prototype.getParent=function(){return a(this.options.parent).find('[data-toggle="collapse"][data-parent="'+this.options.parent+'"]').each(a.proxy(function(c,d){var e=a(d);this.addAriaAndCollapsedClass(b(e),e)},this)).end()},d.prototype.addAriaAndCollapsedClass=function(a,b){var c=a.hasClass("in");a.attr("aria-expanded",c),b.toggleClass("collapsed",!c).attr("aria-expanded",c)};var e=a.fn.collapse;a.fn.collapse=c,a.fn.collapse.Constructor=d,a.fn.collapse.noConflict=function(){return a.fn.collapse=e,this},a(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',function(d){var e=a(this);e.attr("data-target")||d.preventDefault();var f=b(e),g=f.data("bs.collapse"),h=g?"toggle":e.data();c.call(f,h)})}(jQuery),+function(a){"use strict";function b(b){var c=b.attr("data-target");c||(c=b.attr("href"),c=c&&/#[A-Za-z]/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,""));var d=c&&a(c);return d&&d.length?d:b.parent()}function c(c){c&&3===c.which||(a(e).remove(),a(f).each(function(){var d=a(this),e=b(d),f={relatedTarget:this};e.hasClass("open")&&(c&&"click"==c.type&&/input|textarea/i.test(c.target.tagName)&&a.contains(e[0],c.target)||(e.trigger(c=a.Event("hide.bs.dropdown",f)),c.isDefaultPrevented()||(d.attr("aria-expanded","false"),e.removeClass("open").trigger(a.Event("hidden.bs.dropdown",f)))))}))}function d(b){return this.each(function(){var c=a(this),d=c.data("bs.dropdown");d||c.data("bs.dropdown",d=new g(this)),"string"==typeof b&&d[b].call(c)})}var e=".dropdown-backdrop",f='[data-toggle="dropdown"]',g=function(b){a(b).on("click.bs.dropdown",this.toggle)};g.VERSION="3.3.6",g.prototype.toggle=function(d){var e=a(this);if(!e.is(".disabled, :disabled")){var f=b(e),g=f.hasClass("open");if(c(),!g){"ontouchstart"in document.documentElement&&!f.closest(".navbar-nav").length&&a(document.createElement("div")).addClass("dropdown-backdrop").insertAfter(a(this)).on("click",c);var h={relatedTarget:this};if(f.trigger(d=a.Event("show.bs.dropdown",h)),d.isDefaultPrevented())return;e.trigger("focus").attr("aria-expanded","true"),f.toggleClass("open").trigger(a.Event("shown.bs.dropdown",h))}return!1}},g.prototype.keydown=function(c){if(/(38|40|27|32)/.test(c.which)&&!/input|textarea/i.test(c.target.tagName)){var d=a(this);if(c.preventDefault(),c.stopPropagation(),!d.is(".disabled, :disabled")){var e=b(d),g=e.hasClass("open");if(!g&&27!=c.which||g&&27==c.which)return 27==c.which&&e.find(f).trigger("focus"),d.trigger("click");var h=" li:not(.disabled):visible a",i=e.find(".dropdown-menu"+h);if(i.length){var j=i.index(c.target);38==c.which&&j>0&&j--,40==c.which&&jdocument.documentElement.clientHeight;this.$element.css({paddingLeft:!this.bodyIsOverflowing&&a?this.scrollbarWidth:"",paddingRight:this.bodyIsOverflowing&&!a?this.scrollbarWidth:""})},c.prototype.resetAdjustments=function(){this.$element.css({paddingLeft:"",paddingRight:""})},c.prototype.checkScrollbar=function(){var a=window.innerWidth;if(!a){var b=document.documentElement.getBoundingClientRect();a=b.right-Math.abs(b.left)}this.bodyIsOverflowing=document.body.clientWidth
',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0}},c.prototype.init=function(b,c,d){if(this.enabled=!0,this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.$viewport=this.options.viewport&&a(a.isFunction(this.options.viewport)?this.options.viewport.call(this,this.$element):this.options.viewport.selector||this.options.viewport),this.inState={click:!1,hover:!1,focus:!1},this.$element[0]instanceof document.constructor&&!this.options.selector)throw new Error("`selector` option must be specified when initializing "+this.type+" on the window.document object!");for(var e=this.options.trigger.split(" "),f=e.length;f--;){var g=e[f];if("click"==g)this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this));else if("manual"!=g){var h="hover"==g?"mouseenter":"focusin",i="hover"==g?"mouseleave":"focusout";this.$element.on(h+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(i+"."+this.type,this.options.selector,a.proxy(this.leave,this))}}this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.getOptions=function(b){return b=a.extend({},this.getDefaults(),this.$element.data(),b),b.delay&&"number"==typeof b.delay&&(b.delay={show:b.delay,hide:b.delay}),b},c.prototype.getDelegateOptions=function(){var b={},c=this.getDefaults();return this._options&&a.each(this._options,function(a,d){c[a]!=d&&(b[a]=d)}),b},c.prototype.enter=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),b instanceof a.Event&&(c.inState["focusin"==b.type?"focus":"hover"]=!0),c.tip().hasClass("in")||"in"==c.hoverState?void(c.hoverState="in"):(clearTimeout(c.timeout),c.hoverState="in",c.options.delay&&c.options.delay.show?void(c.timeout=setTimeout(function(){"in"==c.hoverState&&c.show()},c.options.delay.show)):c.show())},c.prototype.isInStateTrue=function(){for(var a in this.inState)if(this.inState[a])return!0;return!1},c.prototype.leave=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),b instanceof a.Event&&(c.inState["focusout"==b.type?"focus":"hover"]=!1),c.isInStateTrue()?void 0:(clearTimeout(c.timeout),c.hoverState="out",c.options.delay&&c.options.delay.hide?void(c.timeout=setTimeout(function(){"out"==c.hoverState&&c.hide()},c.options.delay.hide)):c.hide())},c.prototype.show=function(){var b=a.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(b);var d=a.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(b.isDefaultPrevented()||!d)return;var e=this,f=this.tip(),g=this.getUID(this.type);this.setContent(),f.attr("id",g),this.$element.attr("aria-describedby",g),this.options.animation&&f.addClass("fade");var h="function"==typeof this.options.placement?this.options.placement.call(this,f[0],this.$element[0]):this.options.placement,i=/\s?auto?\s?/i,j=i.test(h);j&&(h=h.replace(i,"")||"top"),f.detach().css({top:0,left:0,display:"block"}).addClass(h).data("bs."+this.type,this),this.options.container?f.appendTo(this.options.container):f.insertAfter(this.$element),this.$element.trigger("inserted.bs."+this.type);var k=this.getPosition(),l=f[0].offsetWidth,m=f[0].offsetHeight;if(j){var n=h,o=this.getPosition(this.$viewport);h="bottom"==h&&k.bottom+m>o.bottom?"top":"top"==h&&k.top-mo.width?"left":"left"==h&&k.left-lg.top+g.height&&(e.top=g.top+g.height-i)}else{var j=b.left-f,k=b.left+f+c;jg.right&&(e.left=g.left+g.width-k)}return e},c.prototype.getTitle=function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||("function"==typeof c.title?c.title.call(b[0]):c.title)},c.prototype.getUID=function(a){do a+=~~(1e6*Math.random());while(document.getElementById(a));return a},c.prototype.tip=function(){if(!this.$tip&&(this.$tip=a(this.options.template),1!=this.$tip.length))throw new Error(this.type+" `template` option must consist of exactly 1 top-level element!");return this.$tip},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},c.prototype.enable=function(){this.enabled=!0},c.prototype.disable=function(){this.enabled=!1},c.prototype.toggleEnabled=function(){this.enabled=!this.enabled},c.prototype.toggle=function(b){var c=this;b&&(c=a(b.currentTarget).data("bs."+this.type),c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c))),b?(c.inState.click=!c.inState.click,c.isInStateTrue()?c.enter(c):c.leave(c)):c.tip().hasClass("in")?c.leave(c):c.enter(c)},c.prototype.destroy=function(){var a=this;clearTimeout(this.timeout),this.hide(function(){a.$element.off("."+a.type).removeData("bs."+a.type),a.$tip&&a.$tip.detach(),a.$tip=null,a.$arrow=null,a.$viewport=null})};var d=a.fn.tooltip;a.fn.tooltip=b,a.fn.tooltip.Constructor=c,a.fn.tooltip.noConflict=function(){return a.fn.tooltip=d,this}}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.popover"),f="object"==typeof b&&b;(e||!/destroy|hide/.test(b))&&(e||d.data("bs.popover",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.init("popover",a,b)};if(!a.fn.tooltip)throw new Error("Popover requires tooltip.js");c.VERSION="3.3.6",c.DEFAULTS=a.extend({},a.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:''}),c.prototype=a.extend({},a.fn.tooltip.Constructor.prototype),c.prototype.constructor=c,c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.setContent=function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content").children().detach().end()[this.options.html?"string"==typeof c?"html":"append":"text"](c),a.removeClass("fade top bottom left right in"),a.find(".popover-title").html()||a.find(".popover-title").hide()},c.prototype.hasContent=function(){return this.getTitle()||this.getContent()},c.prototype.getContent=function(){var a=this.$element,b=this.options;return a.attr("data-content")||("function"==typeof b.content?b.content.call(a[0]):b.content)},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")};var d=a.fn.popover;a.fn.popover=b,a.fn.popover.Constructor=c,a.fn.popover.noConflict=function(){return a.fn.popover=d,this}}(jQuery),+function(a){"use strict";function b(c,d){this.$body=a(document.body),this.$scrollElement=a(a(c).is(document.body)?window:c),this.options=a.extend({},b.DEFAULTS,d),this.selector=(this.options.target||"")+" .nav li > a",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on("scroll.bs.scrollspy",a.proxy(this.process,this)),this.refresh(),this.process()}function c(c){return this.each(function(){var d=a(this),e=d.data("bs.scrollspy"),f="object"==typeof c&&c;e||d.data("bs.scrollspy",e=new b(this,f)),"string"==typeof c&&e[c]()})}b.VERSION="3.3.6",b.DEFAULTS={offset:10},b.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},b.prototype.refresh=function(){var b=this,c="offset",d=0;this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight(),a.isWindow(this.$scrollElement[0])||(c="position",d=this.$scrollElement.scrollTop()),this.$body.find(this.selector).map(function(){var b=a(this),e=b.data("target")||b.attr("href"),f=/^#./.test(e)&&a(e);return f&&f.length&&f.is(":visible")&&[[f[c]().top+d,e]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){b.offsets.push(this[0]),b.targets.push(this[1])})},b.prototype.process=function(){var a,b=this.$scrollElement.scrollTop()+this.options.offset,c=this.getScrollHeight(),d=this.options.offset+c-this.$scrollElement.height(),e=this.offsets,f=this.targets,g=this.activeTarget;if(this.scrollHeight!=c&&this.refresh(),b>=d)return g!=(a=f[f.length-1])&&this.activate(a);if(g&&b=e[a]&&(void 0===e[a+1]||b .dropdown-menu > .active").removeClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!1),b.addClass("active").find('[data-toggle="tab"]').attr("aria-expanded",!0),h?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu").length&&b.closest("li.dropdown").addClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!0),e&&e()}var g=d.find("> .active"),h=e&&a.support.transition&&(g.length&&g.hasClass("fade")||!!d.find("> .fade").length);g.length&&h?g.one("bsTransitionEnd",f).emulateTransitionEnd(c.TRANSITION_DURATION):f(),g.removeClass("in")};var d=a.fn.tab;a.fn.tab=b,a.fn.tab.Constructor=c,a.fn.tab.noConflict=function(){return a.fn.tab=d,this};var e=function(c){c.preventDefault(),b.call(a(this),"show")};a(document).on("click.bs.tab.data-api",'[data-toggle="tab"]',e).on("click.bs.tab.data-api",'[data-toggle="pill"]',e)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.affix"),f="object"==typeof b&&b;e||d.data("bs.affix",e=new c(this,f)),"string"==typeof b&&e[b]()})}var c=function(b,d){this.options=a.extend({},c.DEFAULTS,d),this.$target=a(this.options.target).on("scroll.bs.affix.data-api",a.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",a.proxy(this.checkPositionWithEventLoop,this)),this.$element=a(b),this.affixed=null,this.unpin=null,this.pinnedOffset=null,this.checkPosition()};c.VERSION="3.3.6",c.RESET="affix affix-top affix-bottom",c.DEFAULTS={offset:0,target:window},c.prototype.getState=function(a,b,c,d){var e=this.$target.scrollTop(),f=this.$element.offset(),g=this.$target.height();if(null!=c&&"top"==this.affixed)return c>e?"top":!1;if("bottom"==this.affixed)return null!=c?e+this.unpin<=f.top?!1:"bottom":a-d>=e+g?!1:"bottom";var h=null==this.affixed,i=h?e:f.top,j=h?g:b;return null!=c&&c>=e?"top":null!=d&&i+j>=a-d?"bottom":!1},c.prototype.getPinnedOffset=function(){if(this.pinnedOffset)return this.pinnedOffset;this.$element.removeClass(c.RESET).addClass("affix");var a=this.$target.scrollTop(),b=this.$element.offset();return this.pinnedOffset=b.top-a},c.prototype.checkPositionWithEventLoop=function(){setTimeout(a.proxy(this.checkPosition,this),1)},c.prototype.checkPosition=function(){if(this.$element.is(":visible")){var b=this.$element.height(),d=this.options.offset,e=d.top,f=d.bottom,g=Math.max(a(document).height(),a(document.body).height());"object"!=typeof d&&(f=e=d),"function"==typeof e&&(e=d.top(this.$element)),"function"==typeof f&&(f=d.bottom(this.$element));var h=this.getState(g,b,e,f);if(this.affixed!=h){null!=this.unpin&&this.$element.css("top","");var i="affix"+(h?"-"+h:""),j=a.Event(i+".bs.affix");if(this.$element.trigger(j),j.isDefaultPrevented())return;this.affixed=h,this.unpin="bottom"==h?this.getPinnedOffset():null,this.$element.removeClass(c.RESET).addClass(i).trigger(i.replace("affix","affixed")+".bs.affix")}"bottom"==h&&this.$element.offset({top:g-b-f})}};var d=a.fn.affix;a.fn.affix=b,a.fn.affix.Constructor=c,a.fn.affix.noConflict=function(){return a.fn.affix=d,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var c=a(this),d=c.data();d.offset=d.offset||{},null!=d.offsetBottom&&(d.offset.bottom=d.offsetBottom),null!=d.offsetTop&&(d.offset.top=d.offsetTop),b.call(c,d)})})}(jQuery); -------------------------------------------------------------------------------- /Week 5/js/npm.js: -------------------------------------------------------------------------------- 1 | // This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment. 2 | require('../../js/transition.js') 3 | require('../../js/alert.js') 4 | require('../../js/button.js') 5 | require('../../js/carousel.js') 6 | require('../../js/collapse.js') 7 | require('../../js/dropdown.js') 8 | require('../../js/modal.js') 9 | require('../../js/tooltip.js') 10 | require('../../js/popover.js') 11 | require('../../js/scrollspy.js') 12 | require('../../js/tab.js') 13 | require('../../js/affix.js') -------------------------------------------------------------------------------- /Week 5/js/script.js: -------------------------------------------------------------------------------- 1 | $(function () { // Same as document.addEventListener("DOMContentLoaded"... 2 | 3 | // Same as document.querySelector("#navbarToggle").addEventListener("blur",... 4 | $("#navbarToggle").blur(function (event) { 5 | var screenWidth = window.innerWidth; 6 | if (screenWidth < 768) { 7 | $("#collapsable-nav").collapse('hide'); 8 | } 9 | }); 10 | }); 11 | 12 | (function (global) { 13 | 14 | var dc = {}; 15 | 16 | var homeHtmlUrl = "snippets/home-snippet.html"; 17 | var allCategoriesUrl = 18 | "https://davids-restaurant.herokuapp.com/categories.json"; 19 | var categoriesTitleHtml = "snippets/categories-title-snippet.html"; 20 | var categoryHtml = "snippets/category-snippet.html"; 21 | var menuItemsUrl = 22 | "https://davids-restaurant.herokuapp.com/menu_items.json?category="; 23 | var menuItemsTitleHtml = "snippets/menu-items-title.html"; 24 | var menuItemHtml = "snippets/menu-item.html"; 25 | 26 | // Convenience function for inserting innerHTML for 'select' 27 | var insertHtml = function (selector, html) { 28 | var targetElem = document.querySelector(selector); 29 | targetElem.innerHTML = html; 30 | }; 31 | 32 | // Show loading icon inside element identified by 'selector'. 33 | var showLoading = function (selector) { 34 | var html = "
"; 35 | html += "
"; 36 | insertHtml(selector, html); 37 | }; 38 | 39 | // Return substitute of '{{propName}}' 40 | // with propValue in given 'string' 41 | var insertProperty = function (string, propName, propValue) { 42 | var propToReplace = "{{" + propName + "}}"; 43 | string = string 44 | .replace(new RegExp(propToReplace, "g"), propValue); 45 | return string; 46 | }; 47 | 48 | // Remove the class 'active' from home and switch to Menu button 49 | var switchMenuToActive = function () { 50 | // Remove 'active' from home button 51 | var classes = document.querySelector("#navHomeButton").className; 52 | classes = classes.replace(new RegExp("active", "g"), ""); 53 | document.querySelector("#navHomeButton").className = classes; 54 | 55 | // Add 'active' to menu button if not already there 56 | classes = document.querySelector("#navMenuButton").className; 57 | if (classes.indexOf("active") === -1) { 58 | classes += " active"; 59 | document.querySelector("#navMenuButton").className = classes; 60 | } 61 | }; 62 | 63 | // On page load (before images or CSS) 64 | document.addEventListener("DOMContentLoaded", function (event) { 65 | 66 | // TODO: STEP 0: Look over the code from 67 | // *** start *** 68 | // to 69 | // *** finish *** 70 | // below. 71 | // We changed this code to retrieve all categories from the server instead of 72 | // simply requesting home HTML snippet. We now also have another function 73 | // called buildAndShowHomeHTML that will receive all the categories from the server 74 | // and process them: choose random category, retrieve home HTML snippet, insert that 75 | // random category into the home HTML snippet, and then insert that snippet into our 76 | // main page (index.html). 77 | // 78 | // TODO: STEP 1: Substitute [...] below with the *value* of the function buildAndShowHomeHTML, 79 | // so it can be called when server responds with the categories data. 80 | 81 | // *** start *** 82 | // On first load, show home view 83 | showLoading("#main-content"); 84 | $ajaxUtils.sendGetRequest( 85 | allCategoriesUrl, 86 | buildAndShowHomeHTML, // ***** <---- TODO: STEP 1: Substitute [...] ****** 87 | true); // Explicitely setting the flag to get JSON from server processed into an object literal 88 | }); 89 | // *** finish ** 90 | 91 | 92 | // Builds HTML for the home page based on categories array 93 | // returned from the server. 94 | function buildAndShowHomeHTML (categories) { 95 | 96 | // Load home snippet page 97 | $ajaxUtils.sendGetRequest( 98 | homeHtmlUrl, 99 | function (homeHtml) { 100 | 101 | // TODO: STEP 2: Here, call chooseRandomCategory, passing it retrieved 'categories' 102 | // Pay attention to what type of data that function returns vs what the chosenCategoryShortName 103 | // variable's name implies it expects. 104 | // var chosenCategoryShortName = .... 105 | var chosenCategoryShortName = chooseRandomCategory(categories).short_name; 106 | 107 | 108 | // TODO: STEP 3: Substitute {{randomCategoryShortName}} in the home html snippet with the 109 | // chosen category from STEP 2. Use existing insertProperty function for that purpose. 110 | // Look through this code for an example of how to do use the insertProperty function. 111 | // WARNING! You are inserting something that will have to result in a valid Javascript 112 | // syntax because the substitution of {{randomCategoryShortName}} becomes an argument 113 | // being passed into the $dc.loadMenuItems function. Think about what that argument needs 114 | // to look like. For example, a valid call would look something like this: 115 | // $dc.loadMenuItems('L') 116 | // Hint: you need to surround the chosen category short name with something before inserting 117 | // it into the home html snippet. 118 | // 119 | // var homeHtmlToInsertIntoMainPage = .... 120 | chosenCategoryShortName = "'" + chosenCategoryShortName + "'"; 121 | var homeHtmlToInsertIntoMainPage = insertProperty(homeHtml, "randomCategoryShortName", chosenCategoryShortName); 122 | 123 | 124 | // TODO: STEP 4: Insert the the produced HTML in STEP 3 into the main page 125 | // Use the existing insertHtml function for that purpose. Look through this code for an example 126 | // of how to do that. 127 | // .... 128 | insertHtml('#main-content', homeHtmlToInsertIntoMainPage); 129 | 130 | }, 131 | false); // False here because we are getting just regular HTML from the server, so no need to process JSON. 132 | } 133 | 134 | 135 | // Given array of category objects, returns a random category object. 136 | function chooseRandomCategory (categories) { 137 | // Choose a random index into the array (from 0 inclusively until array length (exclusively)) 138 | var randomArrayIndex = Math.floor(Math.random() * categories.length); 139 | 140 | // return category object with that randomArrayIndex 141 | return categories[randomArrayIndex]; 142 | } 143 | 144 | 145 | // Load the menu categories view 146 | dc.loadMenuCategories = function () { 147 | showLoading("#main-content"); 148 | $ajaxUtils.sendGetRequest( 149 | allCategoriesUrl, 150 | buildAndShowCategoriesHTML); 151 | }; 152 | 153 | 154 | // Load the menu items view 155 | // 'categoryShort' is a short_name for a category 156 | dc.loadMenuItems = function (categoryShort) { 157 | showLoading("#main-content"); 158 | $ajaxUtils.sendGetRequest( 159 | menuItemsUrl + categoryShort, 160 | buildAndShowMenuItemsHTML); 161 | }; 162 | 163 | 164 | // Builds HTML for the categories page based on the data 165 | // from the server 166 | function buildAndShowCategoriesHTML (categories) { 167 | // Load title snippet of categories page 168 | $ajaxUtils.sendGetRequest( 169 | categoriesTitleHtml, 170 | function (categoriesTitleHtml) { 171 | // Retrieve single category snippet 172 | $ajaxUtils.sendGetRequest( 173 | categoryHtml, 174 | function (categoryHtml) { 175 | // Switch CSS class active to menu button 176 | switchMenuToActive(); 177 | 178 | var categoriesViewHtml = 179 | buildCategoriesViewHtml(categories, 180 | categoriesTitleHtml, 181 | categoryHtml); 182 | insertHtml("#main-content", categoriesViewHtml); 183 | }, 184 | false); 185 | }, 186 | false); 187 | } 188 | 189 | 190 | // Using categories data and snippets html 191 | // build categories view HTML to be inserted into page 192 | function buildCategoriesViewHtml(categories, 193 | categoriesTitleHtml, 194 | categoryHtml) { 195 | 196 | var finalHtml = categoriesTitleHtml; 197 | finalHtml += "
"; 198 | 199 | // Loop over categories 200 | for (var i = 0; i < categories.length; i++) { 201 | // Insert category values 202 | var html = categoryHtml; 203 | var name = "" + categories[i].name; 204 | var short_name = categories[i].short_name; 205 | html = 206 | insertProperty(html, "name", name); 207 | html = 208 | insertProperty(html, 209 | "short_name", 210 | short_name); 211 | finalHtml += html; 212 | } 213 | 214 | finalHtml += "
"; 215 | return finalHtml; 216 | } 217 | 218 | 219 | 220 | // Builds HTML for the single category page based on the data 221 | // from the server 222 | function buildAndShowMenuItemsHTML (categoryMenuItems) { 223 | // Load title snippet of menu items page 224 | $ajaxUtils.sendGetRequest( 225 | menuItemsTitleHtml, 226 | function (menuItemsTitleHtml) { 227 | // Retrieve single menu item snippet 228 | $ajaxUtils.sendGetRequest( 229 | menuItemHtml, 230 | function (menuItemHtml) { 231 | // Switch CSS class active to menu button 232 | switchMenuToActive(); 233 | 234 | var menuItemsViewHtml = 235 | buildMenuItemsViewHtml(categoryMenuItems, 236 | menuItemsTitleHtml, 237 | menuItemHtml); 238 | insertHtml("#main-content", menuItemsViewHtml); 239 | }, 240 | false); 241 | }, 242 | false); 243 | } 244 | 245 | 246 | // Using category and menu items data and snippets html 247 | // build menu items view HTML to be inserted into page 248 | function buildMenuItemsViewHtml(categoryMenuItems, 249 | menuItemsTitleHtml, 250 | menuItemHtml) { 251 | 252 | menuItemsTitleHtml = 253 | insertProperty(menuItemsTitleHtml, 254 | "name", 255 | categoryMenuItems.category.name); 256 | menuItemsTitleHtml = 257 | insertProperty(menuItemsTitleHtml, 258 | "special_instructions", 259 | categoryMenuItems.category.special_instructions); 260 | 261 | var finalHtml = menuItemsTitleHtml; 262 | finalHtml += "
"; 263 | 264 | // Loop over menu items 265 | var menuItems = categoryMenuItems.menu_items; 266 | var catShortName = categoryMenuItems.category.short_name; 267 | for (var i = 0; i < menuItems.length; i++) { 268 | // Insert menu item values 269 | var html = menuItemHtml; 270 | html = 271 | insertProperty(html, "short_name", menuItems[i].short_name); 272 | html = 273 | insertProperty(html, 274 | "catShortName", 275 | catShortName); 276 | html = 277 | insertItemPrice(html, 278 | "price_small", 279 | menuItems[i].price_small); 280 | html = 281 | insertItemPortionName(html, 282 | "small_portion_name", 283 | menuItems[i].small_portion_name); 284 | html = 285 | insertItemPrice(html, 286 | "price_large", 287 | menuItems[i].price_large); 288 | html = 289 | insertItemPortionName(html, 290 | "large_portion_name", 291 | menuItems[i].large_portion_name); 292 | html = 293 | insertProperty(html, 294 | "name", 295 | menuItems[i].name); 296 | html = 297 | insertProperty(html, 298 | "description", 299 | menuItems[i].description); 300 | 301 | // Add clearfix after every second menu item 302 | if (i % 2 !== 0) { 303 | html += 304 | "
"; 305 | } 306 | 307 | finalHtml += html; 308 | } 309 | 310 | finalHtml += "
"; 311 | return finalHtml; 312 | } 313 | 314 | 315 | // Appends price with '$' if price exists 316 | function insertItemPrice(html, 317 | pricePropName, 318 | priceValue) { 319 | // If not specified, replace with empty string 320 | if (!priceValue) { 321 | return insertProperty(html, pricePropName, ""); 322 | } 323 | 324 | priceValue = "$" + priceValue.toFixed(2); 325 | html = insertProperty(html, pricePropName, priceValue); 326 | return html; 327 | } 328 | 329 | 330 | // Appends portion name in parens if it exists 331 | function insertItemPortionName(html, 332 | portionPropName, 333 | portionValue) { 334 | // If not specified, return original string 335 | if (!portionValue) { 336 | return insertProperty(html, portionPropName, ""); 337 | } 338 | 339 | portionValue = "(" + portionValue + ")"; 340 | html = insertProperty(html, portionPropName, portionValue); 341 | return html; 342 | } 343 | 344 | 345 | global.$dc = dc; 346 | 347 | })(window); 348 | -------------------------------------------------------------------------------- /Week 5/snippets/categories-title-snippet.html: -------------------------------------------------------------------------------- 1 | 2 |
3 | Substituting white rice with brown rice or fried rice after 3:00pm will be $1.50 for a pint and $2.50 for a quart. 4 |
-------------------------------------------------------------------------------- /Week 5/snippets/category-snippet.html: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /Week 5/snippets/home-snippet.html: -------------------------------------------------------------------------------- 1 |
2 | Picture of restaurant 3 |
4 | 5 |
6 |
7 | 8 |
9 | 14 | 22 |
-------------------------------------------------------------------------------- /Week 5/snippets/menu-item.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Week 5/snippets/menu-items-title.html: -------------------------------------------------------------------------------- 1 | 2 |
{{special_instructions}}
-------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 20 | 21 | Coursera's HTML CSS-and Javascript for Web Developers 22 | 23 | 24 |

Webpage links to Coursera's HTML CSS-and Javascript for Web Developers

25 |
26 |
    27 |
  1. Week 2
  2. 28 |
    29 |
  3. Week 3
  4. 30 |
31 |
32 |
  • Week 4
  • 33 |
    34 | 35 | 36 | 37 | --------------------------------------------------------------------------------