From 58d83e35026d981ade4cb92a3473a96915179e5b Mon Sep 17 00:00:00 2001 From: Archana Date: Sat, 2 May 2020 18:51:35 -0700 Subject: [PATCH 1/5] added my first page to the feature branch --- login.html | 55 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 login.html 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 From babb67d61b5e977962758fc2072eacc02747f587 Mon Sep 17 00:00:00 2001 From: Archana Date: Sat, 2 May 2020 19:01:27 -0700 Subject: [PATCH 2/5] added two more files to my project --- page2.html | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ page3.html | 13 ++++++++++++ 2 files changed, 71 insertions(+) create mode 100644 page2.html create mode 100644 page3.html 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 From 08fad470dede45917f6f163907103d7a3a6586ca Mon Sep 17 00:00:00 2001 From: Archana Date: Sat, 2 May 2020 19:04:13 -0700 Subject: [PATCH 3/5] committing my CSS file --- StyleSheet.css | 53 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 StyleSheet.css diff --git a/StyleSheet.css b/StyleSheet.css new file mode 100644 index 0000000..2aa5114 --- /dev/null +++ b/StyleSheet.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%; +} + + From a831e4f94baf2324cacf228158dd4562dca8f82c Mon Sep 17 00:00:00 2001 From: Archana Date: Sat, 2 May 2020 19:12:06 -0700 Subject: [PATCH 4/5] renamed and moved the css file to the appropriate location, TODO - I need to update the CSS references in the html files --- StyleSheet.css => CSS/example-project.css | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename StyleSheet.css => CSS/example-project.css (100%) diff --git a/StyleSheet.css b/CSS/example-project.css similarity index 100% rename from StyleSheet.css rename to CSS/example-project.css From 687d47ef5bc7f2c1cbedc0e419ef3294c829aac3 Mon Sep 17 00:00:00 2001 From: Archana Date: Sat, 2 May 2020 19:20:40 -0700 Subject: [PATCH 5/5] added node module to the project --- package.json | 20 ++++++++++++++++++++ server.js | 0 2 files changed, 20 insertions(+) create mode 100644 package.json create mode 100644 server.js 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/server.js b/server.js new file mode 100644 index 0000000..e69de29