From 6e85a7e4564c7206bd9bf996680e6c0a8bbacde4 Mon Sep 17 00:00:00 2001 From: mr-robot Date: Sat, 16 Jan 2021 18:29:56 +0530 Subject: [PATCH 1/4] Project1 --- Project_1/index.html | 71 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 Project_1/index.html diff --git a/Project_1/index.html b/Project_1/index.html new file mode 100644 index 00000000..9a40f9e6 --- /dev/null +++ b/Project_1/index.html @@ -0,0 +1,71 @@ + + + + + + + Portfolio + + + + + +
+
+ +
+ Home + Contact + About + Blog +
+
  +
+ + Img + +

Contact Form

+ +
+
+ + + + + + + + + + + + +
+
+ + +

HTML Table

+ + + + + + + + + + + + + + +
projectlanguage usedDec
SortlinkNodejsshort the links
+ + + + + + \ No newline at end of file From 38047698fcfe1fc70c08d7433114edbc09451e71 Mon Sep 17 00:00:00 2001 From: mr-robot Date: Thu, 21 Jan 2021 15:55:01 +0530 Subject: [PATCH 2/4] Project 2 done --- Project_1/index.html | 2 +- Project_2/index.html | 110 ++++++++++++++++++++++++++++++ Project_2/style.css | 159 +++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 270 insertions(+), 1 deletion(-) create mode 100644 Project_2/index.html create mode 100644 Project_2/style.css diff --git a/Project_1/index.html b/Project_1/index.html index 9a40f9e6..98a1f194 100644 --- a/Project_1/index.html +++ b/Project_1/index.html @@ -27,7 +27,7 @@

Contact Form

-
+ diff --git a/Project_2/index.html b/Project_2/index.html new file mode 100644 index 00000000..043bc703 --- /dev/null +++ b/Project_2/index.html @@ -0,0 +1,110 @@ + + + + + + + + + + + + + + + +
+ Img +
+ + + + +
+ +
+ +
+
+ +
+
+ +
+
+
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ + +
+ +

HTML Table

+ + + + + + + + + + + + + + +
projectlanguage useddiscretion
SortlinkNodejsshort the links
+ + +
+

Author: Mahendra singh

+

Contact

+
+ + + + + + diff --git a/Project_2/style.css b/Project_2/style.css new file mode 100644 index 00000000..0569a62c --- /dev/null +++ b/Project_2/style.css @@ -0,0 +1,159 @@ +* { + box-sizing: border-box; +} +body { + margin: 0; + font-family: Arial, Helvetica, sans-serif; + } + + .topnav { + overflow: hidden; + background: linear-gradient(to right, #c94b4b, #4b134f); + } + + .topnav a { + float: left; + display: block; + color: #f2f2f2; + text-align: center; + padding: 14px 16px; + text-decoration: none; + font-size: 17px; + } + + .topnav a:hover { + background-color: #ddd; + color: black; + } + + + + .topnav .icon { + display: none; + } + + @media screen and (max-width: 600px) { + .topnav a:not(:first-child) {display: none;} + .topnav a.icon { + float: right; + display: block; + } + } + + @media screen and (max-width: 600px) { + .topnav.responsive {position: relative;} + .topnav.responsive .icon { + position: absolute; + right: 0; + top: 0; + } + .topnav.responsive a { + float: none; + display: block; + text-align: left; + } + } + + .responsive { + max-width: 100%; + height: auto; + } + + +input[type=text], select, textarea { + width: 100%; + padding: 12px; + border: 1px solid #ccc; + border-radius: 4px; + resize: vertical; +} +input[type=email], select, textarea { + width: 100%; + padding: 12px; + border: 1px solid #ccc; + border-radius: 4px; + resize: vertical; +} + +input[type=number], select, textarea { + width: 100%; + padding: 12px; + border: 1px solid #ccc; + border-radius: 4px; + resize: vertical; +} + +label { + padding: 12px 12px 12px 0; + display: inline-block; +} + +input[type=submit] { + background-color: #4CAF50; + color: white; + padding: 12px 20px; + border: none; + border-radius: 4px; + cursor: pointer; + float: right; +} + +input[type=submit]:hover { + background-color: #45a049; +} + +.container { + border-radius: 5px; + padding: 20px; + color:white; +} + +.col-25 { + float: left; + width: 25%; + margin-top: 6px; +} + +.col-75 { + float: left; + width: 75%; + margin-top: 6px; +} + +/* Clear floats after the columns */ +.row:after { + content: ""; + display: table; + clear: both; +} + +/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */ +@media screen and (max-width: 600px) { + .col-25, .col-75, input[type=submit] { + width: 100%; + margin-top: 5px; + } +} +.submit{ +margin-top:10px; +} + +table { + border-collapse: collapse; + border-spacing: 0; + width: 100%; + padding: 20px; + margin-right: 30px; + +} + +th, td { + text-align: left; + padding: 16px; +} +footer { + text-align: center; + padding: 3px; + background: linear-gradient(to right, #ed213a, #93291e); + color: white; +} \ No newline at end of file From ede771ad04e78cb8187c5f32d848c2b2b354a785 Mon Sep 17 00:00:00 2001 From: mr-robot Date: Thu, 21 Jan 2021 17:48:36 +0530 Subject: [PATCH 3/4] project3 done --- Project_3/index.html | 131 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 131 insertions(+) create mode 100644 Project_3/index.html diff --git a/Project_3/index.html b/Project_3/index.html new file mode 100644 index 00000000..44144cb4 --- /dev/null +++ b/Project_3/index.html @@ -0,0 +1,131 @@ + + + + + + + + + + + Portfolio + + + + +
+ +
+ +
+
...
+
+ + + +
+
+
+ + + +
+
+ + +
+ + +
+ + +
+ + +
+ + +
+ + +
+
+ + + + + + + + + + + + + + + + + + + + +
#projectlanguage usingdiscretion
1SortlinkNodejssort the links
+ +
+
Author: Mahendra singh
+
+
Contact
+
+
+ + + + + + + \ No newline at end of file From 9cd9d3a08bbb0afb5e9875d66666a557acc3ef8a Mon Sep 17 00:00:00 2001 From: mr-robot Date: Fri, 22 Jan 2021 22:04:16 +0530 Subject: [PATCH 4/4] Project4 is done --- Project_4/ToDolist.html | 151 ++++++++++++++++++++++++++++++++++++ Project_4/index.html | 166 ++++++++++++++++++++++++++++++++++++++++ Project_4/output.html | 29 +++++++ 3 files changed, 346 insertions(+) create mode 100644 Project_4/ToDolist.html create mode 100644 Project_4/index.html create mode 100644 Project_4/output.html diff --git a/Project_4/ToDolist.html b/Project_4/ToDolist.html new file mode 100644 index 00000000..a895026a --- /dev/null +++ b/Project_4/ToDolist.html @@ -0,0 +1,151 @@ + + + + + + + + To do list + + + + + + + +
+
+

To do List

+
+ + +
+
+ +
+
+
+
+
    + +
+
+ + + + + \ No newline at end of file diff --git a/Project_4/index.html b/Project_4/index.html new file mode 100644 index 00000000..1b6d442f --- /dev/null +++ b/Project_4/index.html @@ -0,0 +1,166 @@ + + + + + + + + + + + + + + +
+
+ +
+
+
...
+
+
+
+

store data

+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+
+
+ + +
+
+ + +
+
+
+
+ +
+ + +
+
+
+ + + + + + + + + + + + + + + + + +
#projectlanguage usingdiscretion
1SortlinkNodejssort the links
+ +
+
Author: Mahendra singh
+ +
+ + + + + + + \ No newline at end of file diff --git a/Project_4/output.html b/Project_4/output.html new file mode 100644 index 00000000..c0782545 --- /dev/null +++ b/Project_4/output.html @@ -0,0 +1,29 @@ + + + + + + + + Hello, world! + + + + + + + + + \ No newline at end of file