diff --git a/app.js b/app.js index e69de29..417806d 100644 --- a/app.js +++ b/app.js @@ -0,0 +1,26 @@ +const express = require('express'); +const path = require('path'); + +const app = express(); + +app.use(express.static('public')); + +app.get('/', (request, response, next) => { + response.sendFile(path.join(__dirname, 'views', 'index.html')); +}); + +app.get('/about', (request, response, next) => { + response.sendFile(path.join(__dirname, 'views', 'about.html')); +}); + +app.get('/works', (request, response, next) => { + response.sendFile(path.join(__dirname, 'views', 'works.html')); +}); + +app.get('/gallery', (request, response, next) => { + response.sendFile(path.join(__dirname, 'views', 'gallery.html')); +}); + +app.listen(3000, () => { + console.log('listening on port 3000!'); +}); \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..e395546 --- /dev/null +++ b/package.json @@ -0,0 +1,5 @@ +{ + "dependencies": { + "express": "^4.21.1" + } +} diff --git a/views/about.html b/views/about.html new file mode 100644 index 0000000..85e48ae --- /dev/null +++ b/views/about.html @@ -0,0 +1,37 @@ + + + + + + + + About Jr. NTR + + + +

About Jr. NTR

+

Nandamuri Taraka Rama Rao Jr. (born 20 May 1983), popularly known by the initialism Jr NTR, is an Indian actor + and producer who primarily works in Telugu cinema.[1] He has been featured in Forbes India's Celebrity 100 list + since 2012.[2][3] Referred to in the media as the "Man of Masses", he has starred in 30 films.[4] Rao's + accolades include three Filmfare Awards, two Nandi Awards, two Siima Awards, four CineMAA Awards and one IIFA + Award. + + Grandson of Telugu matinee idol N. T. Rama Rao, who was also the former Chief Minister of the Indian state of + Andhra Pradesh,[5] Rao appeared as a child actor in Brahmarshi Viswamitra (1991) and the National Film + Award-winning Ramayanam (1997). He played his first leading role in Ninnu Choodalani (2001) and achieved his + breakthrough with the coming-of-age film Student No: 1 (2001) and the action drama Aadi (2002). This was + followed by the commercially successful films Simhadri (2003), Rakhi (2006), Yamadonga (2007), Adhurs (2010), + Brindavanam (2010) and Baadshah (2013). + + Following a decline, he made a career comeback with the 2015 action drama Temper and achieved consistent success + with Nannaku Prematho (2016), Janatha Garage (2016), Jai Lava Kusa (2017) and Aravinda Sametha Veera Raghava + (2018). After a four-year hiatus, Rao starred in S. S. Rajamouli's magnum opus RRR (2022), a global phenomenon + which earned him Pan-India fame and universal recognition, becoming one of the highest-grossing Indian films + ever. He has since played the titular role in the action drama Devara: Part 1 (2024). + + In 2017, he hosted the first season of the Telugu language reality TV show Bigg Boss on Star Maa. He also hosted + the fifth season of Evaru Meelo Koteeswarulu in 2021 on Gemini TV.

+ Home + + + \ No newline at end of file diff --git a/views/gallery.html b/views/gallery.html new file mode 100644 index 0000000..17b6908 --- /dev/null +++ b/views/gallery.html @@ -0,0 +1,23 @@ + + + + + + + Photo Gallery + + +

Photo Gallery of Jr. NTR

+ Jr. NTR Photo 1 + Jr. NTR Photo 2 + Jr. NTR Photo 3 + Jr. NTR Photo 4 + Jr. NTR Photo 5 + Jr. NTR Photo 6 + Jr. NTR Photo 7 + Jr. NTR Photo 8 + Jr. NTR Photo 9 + + Home + + \ No newline at end of file diff --git a/views/index.html b/views/index.html new file mode 100644 index 0000000..c9c0061 --- /dev/null +++ b/views/index.html @@ -0,0 +1,17 @@ + + + + + + + Welcome to Jr. NTR's Fan Page + + +

Welcome to Jr. NTR's Fan Page

+ + + \ No newline at end of file diff --git a/views/styel.css b/views/styel.css new file mode 100644 index 0000000..f540243 --- /dev/null +++ b/views/styel.css @@ -0,0 +1,50 @@ + +body { + font-family: Arial, sans-serif; + background-color: #f0f0f0; + margin: 0; + padding: 20px; +} + +h1 { + color: #b00a0a; + text-align: center; +} + +nav { + text-align: center; + margin: 20px 0; +} + +nav a { + margin: 0 15px; + text-decoration: none; + color: #007bff; + font-weight: bold; +} + +nav a:hover { + text-decoration: underline; +} + +p { + color: #333; + line-height: 1.6; +} + +ul { + list-style-type: none; + padding: 0; +} + +ul li { + background-color: #fff; + margin: 10px 0; + padding: 10px; + border-radius: 5px; +} + +img { + max-width: 50%; + height: 50%; +} \ No newline at end of file diff --git a/views/works.html b/views/works.html new file mode 100644 index 0000000..e468c88 --- /dev/null +++ b/views/works.html @@ -0,0 +1,24 @@ + + + + + + Jr. NTR's Works + + +

Jr. NTR's Works

+ + Home + + \ No newline at end of file