├── README.md ├── assets ├── .DS_Store ├── images │ ├── .DS_Store │ ├── bg-border.svg │ ├── bg-melee.png │ ├── bg-run.png │ ├── bg-shoot.png │ ├── bg.jpg │ ├── logo.png │ ├── zombie-melee.png │ ├── zombie-melee.svg │ ├── zombie-run.png │ ├── zombie-run.svg │ ├── zombie-shoot.png │ └── zombie-shoot.svg └── stylesheets │ ├── beginning.css │ ├── end.css │ └── normalize.css ├── beginning.html └── end.html /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-WebpageWithSVG/HEAD/README.md -------------------------------------------------------------------------------- /assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-WebpageWithSVG/HEAD/assets/.DS_Store -------------------------------------------------------------------------------- /assets/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-WebpageWithSVG/HEAD/assets/images/.DS_Store -------------------------------------------------------------------------------- /assets/images/bg-border.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-WebpageWithSVG/HEAD/assets/images/bg-border.svg -------------------------------------------------------------------------------- /assets/images/bg-melee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-WebpageWithSVG/HEAD/assets/images/bg-melee.png -------------------------------------------------------------------------------- /assets/images/bg-run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-WebpageWithSVG/HEAD/assets/images/bg-run.png -------------------------------------------------------------------------------- /assets/images/bg-shoot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-WebpageWithSVG/HEAD/assets/images/bg-shoot.png -------------------------------------------------------------------------------- /assets/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-WebpageWithSVG/HEAD/assets/images/bg.jpg -------------------------------------------------------------------------------- /assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-WebpageWithSVG/HEAD/assets/images/logo.png -------------------------------------------------------------------------------- /assets/images/zombie-melee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-WebpageWithSVG/HEAD/assets/images/zombie-melee.png -------------------------------------------------------------------------------- /assets/images/zombie-melee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-WebpageWithSVG/HEAD/assets/images/zombie-melee.svg -------------------------------------------------------------------------------- /assets/images/zombie-run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-WebpageWithSVG/HEAD/assets/images/zombie-run.png -------------------------------------------------------------------------------- /assets/images/zombie-run.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-WebpageWithSVG/HEAD/assets/images/zombie-run.svg -------------------------------------------------------------------------------- /assets/images/zombie-shoot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-WebpageWithSVG/HEAD/assets/images/zombie-shoot.png -------------------------------------------------------------------------------- /assets/images/zombie-shoot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-WebpageWithSVG/HEAD/assets/images/zombie-shoot.svg -------------------------------------------------------------------------------- /assets/stylesheets/beginning.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-WebpageWithSVG/HEAD/assets/stylesheets/beginning.css -------------------------------------------------------------------------------- /assets/stylesheets/end.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-WebpageWithSVG/HEAD/assets/stylesheets/end.css -------------------------------------------------------------------------------- /assets/stylesheets/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-WebpageWithSVG/HEAD/assets/stylesheets/normalize.css -------------------------------------------------------------------------------- /beginning.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-WebpageWithSVG/HEAD/beginning.html -------------------------------------------------------------------------------- /end.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-WebpageWithSVG/HEAD/end.html --------------------------------------------------------------------------------