diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3c3629e --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +node_modules diff --git a/Gruntfile.js b/Gruntfile.js new file mode 100644 index 0000000..74ab16d --- /dev/null +++ b/Gruntfile.js @@ -0,0 +1,34 @@ + + +module.exports = function(grunt) { + + + grunt.initConfig({ + connect: { + server: { + options: { + port: 8080, + base: './', + keepalive: true + } + }, + + }, + watch: { + css: { + files: '*.html', + options: { + livereload: true, + }, + }, + }, + }); + + + grunt.loadNpmTasks('grunt-contrib-connect'); + grunt.loadNpmTasks('grunt-contrib-watch'); + + + grunt.registerTask('default', ['connect', 'watch']); + +}; \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..e64b430 --- /dev/null +++ b/index.html @@ -0,0 +1,151 @@ + + + + + + + + + Narrow Jumbotron Template for Bootstrap + + + + + + + + + + + + + +
+
+ +

Accessibility Assignment

+
+ +

Jumbotron heading

+ + +
+
+
+ Sign Up + +
+ + +
+ +
+ + +
+ + +
+
+ +
+ + + +
+ + + + + diff --git a/package.json b/package.json new file mode 100644 index 0000000..a02b259 --- /dev/null +++ b/package.json @@ -0,0 +1,16 @@ +{ + "name": "dmd-accessibility", + "version": "1.0.0", + "description": "Accessibility assignment for DMD", + "main": "index.html", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "author": "", + "license": "ISC", + "devDependencies": { + "grunt": "^0.4.5", + "grunt-contrib-connect": "^0.9.0", + "grunt-contrib-watch": "^0.6.1" + } +}