diff --git a/server.js b/server.js index 3d5cece3abd..cfc2c0628b8 100644 --- a/server.js +++ b/server.js @@ -7,6 +7,13 @@ app.use(morgan('combined')); app.get('/', function (req, res) { res.sendFile(path.join(__dirname, 'ui', 'index.html')); +}); + + app.get('/1', function (req, res) { + res.sendFile(path.join(__dirname, 'ui', '1.html')); +}); +app.get('/ui/main.js', function (req, res) { + res.sendFile(path.join(__dirname, 'ui', 'main.js')); }); app.get('/ui/style.css', function (req, res) { diff --git a/ui/index.html b/ui/index.html index 5a28644db45..9ae91a09ee7 100644 --- a/ui/index.html +++ b/ui/index.html @@ -2,16 +2,20 @@ + + +
- +

- Hi! I am your webapp. + Hi I am anand and this is my webapp.Keep refreshing the page.
+
diff --git a/ui/style.css b/ui/style.css index 71a5f6acc1e..4420e0f0a77 100644 --- a/ui/style.css +++ b/ui/style.css @@ -1,9 +1,14 @@ + body { - font-family: sans-serif; - background-color: lightgrey; + font-family: Bold; + background-color: black; margin-top: 75px; } - +.wall{ + background: url(http://androidwallpape.rs/content/02-wallpapers/131-night-sky/wallpaper-2707591.jpg); + background-size: 100% ; + background-repeat: no-repeat; +} .center { text-align: center; } @@ -17,6 +22,7 @@ body { } .img-medium { - height: 200px; + border-radius:100px; + }