From 8174907dff2fc0c38347ce56f20a0d9ca0f93b80 Mon Sep 17 00:00:00 2001
From: bholebaba0135 <78156665+bholebaba0135@users.noreply.github.com>
Date: Sat, 1 May 2021 23:06:02 +0530
Subject: [PATCH 1/5] Add files via upload
---
.../archive.css | 100 +++++
.../archive.html | 142 +++++++
.../home.html | 9 +-
.../list.html | 5 +-
.../marksm.css | 145 +++++++
.../marksm.html | 92 +++++
.../marksp.css | 145 +++++++
.../marksp.html | 99 +++++
.../mcq.html | 5 +-
.../poddiscuss.html | 5 +-
.../profile.html | 5 +-
.../programming.html | 12 +-
.../test.css | 44 ++
.../test.html | 60 +++
.../timetable.css | 104 +++++
.../timetable.html | 385 ++++++++++++++++++
16 files changed, 1337 insertions(+), 20 deletions(-)
create mode 100644 Frontend Web Dev/Vpropel page(First attempt with CSS)/archive.css
create mode 100644 Frontend Web Dev/Vpropel page(First attempt with CSS)/archive.html
create mode 100644 Frontend Web Dev/Vpropel page(First attempt with CSS)/marksm.css
create mode 100644 Frontend Web Dev/Vpropel page(First attempt with CSS)/marksm.html
create mode 100644 Frontend Web Dev/Vpropel page(First attempt with CSS)/marksp.css
create mode 100644 Frontend Web Dev/Vpropel page(First attempt with CSS)/marksp.html
create mode 100644 Frontend Web Dev/Vpropel page(First attempt with CSS)/test.css
create mode 100644 Frontend Web Dev/Vpropel page(First attempt with CSS)/test.html
create mode 100644 Frontend Web Dev/Vpropel page(First attempt with CSS)/timetable.css
create mode 100644 Frontend Web Dev/Vpropel page(First attempt with CSS)/timetable.html
diff --git a/Frontend Web Dev/Vpropel page(First attempt with CSS)/archive.css b/Frontend Web Dev/Vpropel page(First attempt with CSS)/archive.css
new file mode 100644
index 0000000..d762a0b
--- /dev/null
+++ b/Frontend Web Dev/Vpropel page(First attempt with CSS)/archive.css
@@ -0,0 +1,100 @@
+*{
+ margin: 0px;
+ padding: 0px;
+}
+.header {
+ width:100%;
+ height:100px;
+ background-color:rgb(56,107,140) ;
+ }
+
+.lheader{
+ float:left;
+ width:10%;
+ height:60px;
+ margin-left: 8px;
+ margin-top: 8px;
+ margin-bottom: 8px;
+
+
+}
+.rheader{
+ float:right;
+ width:87%;
+}
+.rheader ul li{
+ display:inline-block;
+ font-family: 'Montserrat', sans-serif;
+ color: white;
+ font-size: 25px;
+ line-height: 100px;
+ margin-left: 25px;
+}
+.navbar {
+ overflow: hidden;
+ background-color:rgb(245,255,208);
+ font-family: 'Montserrat', sans-serif;
+ height:70px;
+
+ }
+ .navbar a {
+ float: left;
+ font-size: 16px;
+ color: black;
+ text-align: center;
+ padding: 14px 16px;
+ text-decoration: none;
+ margin-top: 15px;
+ margin-left: 12px;
+ }
+ .dropdown {
+ float: left;
+ overflow: hidden;
+ }
+ .dropdown .dropbtn {
+ font-size: 16px;
+ border: none;
+ outline: none;
+ color: black;
+ padding: 14px 16px;
+ background-color: inherit;
+ font-family: inherit;
+ margin-top: 15px;
+ margin-left: 12px;
+ }
+ .navbar a:hover, .dropdown:hover .dropbtn {
+ background-color: rgb(84,91,98);
+ }
+ .dropdown-content {
+ display: none;
+ position: absolute;
+ background-color: #f9f9f9;
+ min-width: 160px;
+ box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
+ z-index: 1;
+ }
+ .dropdown-content a {
+ float: none;
+ color: black;
+ padding: 12px 16px;
+ text-decoration: none;
+ display: block;
+ text-align: left;
+ }
+ .dropdown-content a:hover {
+ background-color: #ddd;
+ }
+ .dropdown:hover .dropdown-content {
+ display: block;
+ }
+ .buttonone{
+ background-color: rgb(0,123,255);
+ font-size: 16px;
+ padding:10px;
+ border-radius: 4px;
+ -webkit-border-radius: 4px;
+ -moz-border-radius: 4px;
+ -ms-border-radius: 4px;
+ -o-border-radius: 4px;
+
+ }
diff --git a/Frontend Web Dev/Vpropel page(First attempt with CSS)/archive.html b/Frontend Web Dev/Vpropel page(First attempt with CSS)/archive.html
new file mode 100644
index 0000000..b2da66e
--- /dev/null
+++ b/Frontend Web Dev/Vpropel page(First attempt with CSS)/archive.html
@@ -0,0 +1,142 @@
+
+
+ View Pod Solutions
+
+
+
+
+
+
+
+ Problem of Day solution archives
+ An archive containing discussions about the last 7 problems
+
+
+
+ 2021-04-02
+
+
+
+ Plants Grown and Amount of Water
+ easy
+ View solution
+
+
+
+
+
+
+ 2021-09-23
+
+
+
+ Togetherness of a Family
+ hard
+ View solution
+
+
+
+
+
+ 2021-09-22
+
+
+
+ Midnumeral Strings to Rightnumeral Strings (D)
+ hard
+ View solution
+
+
+
+
+
+ 2021-09-18
+
+
+
+ Largest Factor Among Left Rotated Numbers
+ medium
+ View solution
+
+
+
+
+
+ 2021-09-17
+
+
+
+ Reverse Length Divisible (D)
+ medium
+ View solution
+
+
+
+
+
+ 2021-09-16
+
+
+
+ Ramu and cakes
+ medium
+ View solution
+
+
+
+
+
+
+ 2021-09-15
+
+
+
+ Ramu and building pipes
+ hard
+ View solution
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Frontend Web Dev/Vpropel page(First attempt with CSS)/home.html b/Frontend Web Dev/Vpropel page(First attempt with CSS)/home.html
index b3482e2..cf24cfb 100644
--- a/Frontend Web Dev/Vpropel page(First attempt with CSS)/home.html
+++ b/Frontend Web Dev/Vpropel page(First attempt with CSS)/home.html
@@ -38,11 +38,12 @@
+ Time Table
Logout
Problem of the Day Archives
Solution and editorials
The solutions and editorials for the previously given daily challenges for the past one week.
-
See Archive
+
See Archive
diff --git a/Frontend Web Dev/Vpropel page(First attempt with CSS)/list.html b/Frontend Web Dev/Vpropel page(First attempt with CSS)/list.html
index bb5e0fc..91973a6 100644
--- a/Frontend Web Dev/Vpropel page(First attempt with CSS)/list.html
+++ b/Frontend Web Dev/Vpropel page(First attempt with CSS)/list.html
@@ -38,11 +38,12 @@
+ Time Table
Logout
Demonstration Videos
diff --git a/Frontend Web Dev/Vpropel page(First attempt with CSS)/marksm.css b/Frontend Web Dev/Vpropel page(First attempt with CSS)/marksm.css
new file mode 100644
index 0000000..858d7a9
--- /dev/null
+++ b/Frontend Web Dev/Vpropel page(First attempt with CSS)/marksm.css
@@ -0,0 +1,145 @@
+*{
+ margin: 0px;
+ padding: 0px;
+}
+.header {
+ width:100%;
+ height:100px;
+ background-color:rgb(56,107,140) ;
+ }
+
+.lheader{
+ float:left;
+ width:10%;
+ height:60px;
+ margin-left: 8px;
+ margin-top: 8px;
+ margin-bottom: 8px;
+
+
+}
+.rheader{
+ float:right;
+ width:87%;
+}
+.rheader ul li{
+ display:inline-block;
+ font-family: 'Montserrat', sans-serif;
+ color: white;
+ font-size: 25px;
+ line-height: 100px;
+ margin-left: 25px;
+}
+.navbar {
+ overflow: hidden;
+ background-color:rgb(245,255,208);
+ font-family: 'Montserrat', sans-serif;
+ height:70px;
+ }
+ .navbar a {
+ float: left;
+ font-size: 16px;
+ color: black;
+ text-align: center;
+ padding: 14px 16px;
+ text-decoration: none;
+ margin-top: 15px;
+ margin-left: 12px;
+ }
+ .dropdown {
+ float: left;
+ overflow: hidden;
+ }
+ .dropdown .dropbtn {
+ font-size: 16px;
+ border: none;
+ outline: none;
+ color: black;
+ padding: 14px 16px;
+ background-color: inherit;
+ font-family: inherit;
+ margin-top: 15px;
+ margin-left: 12px;
+ }
+ .navbar a:hover, .dropdown:hover .dropbtn {
+ background-color: rgb(84,91,98);
+ }
+ .dropdown-content {
+ display: none;
+ position: absolute;
+ background-color: #f9f9f9;
+ min-width: 160px;
+ box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
+ z-index: 1;
+ }
+ .dropdown-content a {
+ float: none;
+ color: black;
+ padding: 12px 16px;
+ text-decoration: none;
+ display: block;
+ text-align: left;
+ }
+ .dropdown-content a:hover {
+ background-color: #ddd;
+ }
+ .dropdown:hover .dropdown-content {
+ display: block;
+ }
+ .dropbtntwo {
+ background-color: white;
+ color: rgb(105,97,104);
+ padding: 15px;
+ font-size: 15px;
+ border: 2px solid rgb(235,235,235);
+ width:310px;
+ text-align: left;
+ height:40px;
+ font-family: sans-serif;
+
+ border-radius: 4px;
+ -webkit-border-radius: 4px;
+ -moz-border-radius: 4px;
+ -ms-border-radius: 4px;
+ -o-border-radius: 4px;
+}
+ .dropdowntwo button{
+ margin-bottom: 20px;
+ }
+ .dropdowntwo {
+ position: relative;
+ display: inline-block;
+ }
+ .dropdown-contenttwo {
+ display: none;
+ position: absolute;
+ background-color: #f1f1f1;
+
+ box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
+ z-index: 1;
+
+ border-radius: 4px;
+ }
+ .dropdown-contenttwo a {
+ color: black;
+ padding: 4px 16px;
+ text-decoration: none;
+ display: block;
+ }
+ .dropdowntwo:hover .dropdown-contenttwo {display: block;}
+ .dropdown-contenttwo a:hover {background-color: rgb(0,123,255);}
+ .dropdowntwo:hover .dropbtntwo {background-color: grey;}
+ .buttonone{
+ background-color: rgb(40,167,69);
+ font-size: 18px;
+ padding-top: 8px;
+ padding-left: 11px;
+ padding-right: 11px;
+ padding-bottom: 8px;
+ border-radius: 4px;
+ -webkit-border-radius: 4px;
+ -moz-border-radius: 4px;
+ -ms-border-radius: 4px;
+ -o-border-radius: 4px;
+
+ }
diff --git a/Frontend Web Dev/Vpropel page(First attempt with CSS)/marksm.html b/Frontend Web Dev/Vpropel page(First attempt with CSS)/marksm.html
new file mode 100644
index 0000000..411d186
--- /dev/null
+++ b/Frontend Web Dev/Vpropel page(First attempt with CSS)/marksm.html
@@ -0,0 +1,92 @@
+
+
+ Student Home Welcome
+
+
+
+
+
+
+
+ View MCQ Test Marks
+
+
+
+
+ Course Code
+ Test
+
+
+
+
+
+
+
+
+
+
+ Show
+
+
+
+ Cancel
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Frontend Web Dev/Vpropel page(First attempt with CSS)/marksp.css b/Frontend Web Dev/Vpropel page(First attempt with CSS)/marksp.css
new file mode 100644
index 0000000..858d7a9
--- /dev/null
+++ b/Frontend Web Dev/Vpropel page(First attempt with CSS)/marksp.css
@@ -0,0 +1,145 @@
+*{
+ margin: 0px;
+ padding: 0px;
+}
+.header {
+ width:100%;
+ height:100px;
+ background-color:rgb(56,107,140) ;
+ }
+
+.lheader{
+ float:left;
+ width:10%;
+ height:60px;
+ margin-left: 8px;
+ margin-top: 8px;
+ margin-bottom: 8px;
+
+
+}
+.rheader{
+ float:right;
+ width:87%;
+}
+.rheader ul li{
+ display:inline-block;
+ font-family: 'Montserrat', sans-serif;
+ color: white;
+ font-size: 25px;
+ line-height: 100px;
+ margin-left: 25px;
+}
+.navbar {
+ overflow: hidden;
+ background-color:rgb(245,255,208);
+ font-family: 'Montserrat', sans-serif;
+ height:70px;
+ }
+ .navbar a {
+ float: left;
+ font-size: 16px;
+ color: black;
+ text-align: center;
+ padding: 14px 16px;
+ text-decoration: none;
+ margin-top: 15px;
+ margin-left: 12px;
+ }
+ .dropdown {
+ float: left;
+ overflow: hidden;
+ }
+ .dropdown .dropbtn {
+ font-size: 16px;
+ border: none;
+ outline: none;
+ color: black;
+ padding: 14px 16px;
+ background-color: inherit;
+ font-family: inherit;
+ margin-top: 15px;
+ margin-left: 12px;
+ }
+ .navbar a:hover, .dropdown:hover .dropbtn {
+ background-color: rgb(84,91,98);
+ }
+ .dropdown-content {
+ display: none;
+ position: absolute;
+ background-color: #f9f9f9;
+ min-width: 160px;
+ box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
+ z-index: 1;
+ }
+ .dropdown-content a {
+ float: none;
+ color: black;
+ padding: 12px 16px;
+ text-decoration: none;
+ display: block;
+ text-align: left;
+ }
+ .dropdown-content a:hover {
+ background-color: #ddd;
+ }
+ .dropdown:hover .dropdown-content {
+ display: block;
+ }
+ .dropbtntwo {
+ background-color: white;
+ color: rgb(105,97,104);
+ padding: 15px;
+ font-size: 15px;
+ border: 2px solid rgb(235,235,235);
+ width:310px;
+ text-align: left;
+ height:40px;
+ font-family: sans-serif;
+
+ border-radius: 4px;
+ -webkit-border-radius: 4px;
+ -moz-border-radius: 4px;
+ -ms-border-radius: 4px;
+ -o-border-radius: 4px;
+}
+ .dropdowntwo button{
+ margin-bottom: 20px;
+ }
+ .dropdowntwo {
+ position: relative;
+ display: inline-block;
+ }
+ .dropdown-contenttwo {
+ display: none;
+ position: absolute;
+ background-color: #f1f1f1;
+
+ box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
+ z-index: 1;
+
+ border-radius: 4px;
+ }
+ .dropdown-contenttwo a {
+ color: black;
+ padding: 4px 16px;
+ text-decoration: none;
+ display: block;
+ }
+ .dropdowntwo:hover .dropdown-contenttwo {display: block;}
+ .dropdown-contenttwo a:hover {background-color: rgb(0,123,255);}
+ .dropdowntwo:hover .dropbtntwo {background-color: grey;}
+ .buttonone{
+ background-color: rgb(40,167,69);
+ font-size: 18px;
+ padding-top: 8px;
+ padding-left: 11px;
+ padding-right: 11px;
+ padding-bottom: 8px;
+ border-radius: 4px;
+ -webkit-border-radius: 4px;
+ -moz-border-radius: 4px;
+ -ms-border-radius: 4px;
+ -o-border-radius: 4px;
+
+ }
diff --git a/Frontend Web Dev/Vpropel page(First attempt with CSS)/marksp.html b/Frontend Web Dev/Vpropel page(First attempt with CSS)/marksp.html
new file mode 100644
index 0000000..dad4e63
--- /dev/null
+++ b/Frontend Web Dev/Vpropel page(First attempt with CSS)/marksp.html
@@ -0,0 +1,99 @@
+
+
+ Student Home Welcome
+
+
+
+
+
+
+
+ View Code Test Marks
+
+
+
+
+ Course Code
+ Test
+
+
+
+
+
+
+
+
+
+
+ Show
+
+
+
+ Cancel
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Frontend Web Dev/Vpropel page(First attempt with CSS)/mcq.html b/Frontend Web Dev/Vpropel page(First attempt with CSS)/mcq.html
index 6160907..0b27dc5 100644
--- a/Frontend Web Dev/Vpropel page(First attempt with CSS)/mcq.html
+++ b/Frontend Web Dev/Vpropel page(First attempt with CSS)/mcq.html
@@ -39,11 +39,12 @@
+ Time Table
Logout
diff --git a/Frontend Web Dev/Vpropel page(First attempt with CSS)/poddiscuss.html b/Frontend Web Dev/Vpropel page(First attempt with CSS)/poddiscuss.html
index c02b197..be1f669 100644
--- a/Frontend Web Dev/Vpropel page(First attempt with CSS)/poddiscuss.html
+++ b/Frontend Web Dev/Vpropel page(First attempt with CSS)/poddiscuss.html
@@ -38,11 +38,12 @@
+ Time Table
Logout
PoD Discussion Videos For Selected Problems
diff --git a/Frontend Web Dev/Vpropel page(First attempt with CSS)/profile.html b/Frontend Web Dev/Vpropel page(First attempt with CSS)/profile.html
index 5bb8728..a15bba5 100644
--- a/Frontend Web Dev/Vpropel page(First attempt with CSS)/profile.html
+++ b/Frontend Web Dev/Vpropel page(First attempt with CSS)/profile.html
@@ -39,11 +39,12 @@
+ Time Table
Logout
diff --git a/Frontend Web Dev/Vpropel page(First attempt with CSS)/programming.html b/Frontend Web Dev/Vpropel page(First attempt with CSS)/programming.html
index ce8a2f5..79ac90c 100644
--- a/Frontend Web Dev/Vpropel page(First attempt with CSS)/programming.html
+++ b/Frontend Web Dev/Vpropel page(First attempt with CSS)/programming.html
@@ -39,11 +39,12 @@
+ Time Table
Logout
@@ -59,10 +60,5 @@
Programming Tests
-
-
-
-
-
-