diff --git a/CSS/example-project.css b/CSS/example-project.css new file mode 100644 index 0000000..2aa5114 --- /dev/null +++ b/CSS/example-project.css @@ -0,0 +1,53 @@ + +body + + .heading +{ + width: 30%; + margin: auto; + font-size: 20px; + font-family: arial; + color: blue; +} + +input { + padding: 1%; +} + +.main { + border: 2px solid burlywood; + width: 40%; + margin: auto; + padding: 2%; + border-radius: 20px; +} + +.titles { + float: left; + width: 50%; + padding: 3%; + padding-left: 10%; + font-size: 17px; +} + +.inputs { + padding: 3%; +} + +.btn { + margin: auto; + width: 20%; + padding: 3%; +} + +.botn { + background-color: lightsteelblue; + padding: 6%; + border: 2px solid; + border-radius: 10px; + font-weight: bold; + color: black; + width: 80%; +} + + diff --git a/login.html b/login.html new file mode 100644 index 0000000..ab6aa0f --- /dev/null +++ b/login.html @@ -0,0 +1,55 @@ + + + + + + + + + +
+ +
+

Registration Form


+ + + +
+ First Name + +
+
+
+ Last Name + +
+
+
+ Email        + +
+
+
+ Age           + +
+
+
+ + + +
+
+ +
+ + + + + + + + + \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..9fd80c8 --- /dev/null +++ b/package.json @@ -0,0 +1,20 @@ +{ + "name": "exampleproject", + "version": "1.0.0", + "description": "Example Project", + "main": "server.js", + "scripts": { + "test": "npm test", + "start": "node server.js" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/archanak89/ExampleProject.git" + }, + "author": "Basta Archana", + "license": "ISC", + "bugs": { + "url": "https://github.com/archanak89/ExampleProject/issues" + }, + "homepage": "https://github.com/archanak89/ExampleProject#readme" +} diff --git a/page2.html b/page2.html new file mode 100644 index 0000000..787c5e5 --- /dev/null +++ b/page2.html @@ -0,0 +1,58 @@ + + + + + + + + + +
+ +
+

Registration Form Page2


+ + + +
+ Address1 + +
+
+
+ Address2 + +
+
+
+ Country + +
+
+ PIN + +
+
+ + + + +
+
+ + + + \ No newline at end of file diff --git a/page3.html b/page3.html new file mode 100644 index 0000000..5ee9a4c --- /dev/null +++ b/page3.html @@ -0,0 +1,13 @@ + + + + + + + + + +

ThankYou


+ + + \ No newline at end of file diff --git a/server.js b/server.js new file mode 100644 index 0000000..e69de29