From e76b3d86f3ec3c9433797e81367bb146fc5b0c41 Mon Sep 17 00:00:00 2001 From: vikas Date: Fri, 26 Jan 2024 08:36:52 +0530 Subject: [PATCH] container config --- css/explore-course.css | 2 +- css/explore-privacy.css | 8 +- css/frontend-course.css | 2 +- css/hacking-course.css | 2 +- css/index.css | 30 ++++-- css/ui-ux-course.css | 2 +- css/web-course.css | 2 +- index.html | 24 ++++- js/side-nav.js | 9 ++ mobileports/explore-course.css | 118 +++++++++++++++++++++++ mobileports/explore-development.css | 81 ++++++++++++++++ mobileports/explore-hacking.css | 81 ++++++++++++++++ mobileports/explore-privacy.css | 81 ++++++++++++++++ mobileports/frontend-course.css | 118 +++++++++++++++++++++++ mobileports/hacking-course.css | 118 +++++++++++++++++++++++ mobileports/index-port.css | 143 ++++++++++++++++++++++++++++ mobileports/ui-ux-course.css | 118 +++++++++++++++++++++++ mobileports/web-course.css | 118 +++++++++++++++++++++++ template/explore-course.html | 3 +- template/explore-development.html | 1 + template/explore-hacking.html | 1 + template/explore-privacy.html | 6 +- template/frontend-course.html | 3 +- template/hacking-course.html | 3 +- template/ui-ux-course.html | 3 +- template/web-course.html | 3 +- 26 files changed, 1054 insertions(+), 26 deletions(-) create mode 100644 js/side-nav.js create mode 100644 mobileports/explore-course.css create mode 100644 mobileports/explore-development.css create mode 100644 mobileports/explore-hacking.css create mode 100644 mobileports/explore-privacy.css create mode 100644 mobileports/frontend-course.css create mode 100644 mobileports/hacking-course.css create mode 100644 mobileports/index-port.css create mode 100644 mobileports/ui-ux-course.css create mode 100644 mobileports/web-course.css diff --git a/css/explore-course.css b/css/explore-course.css index 913ee70..6e5216f 100644 --- a/css/explore-course.css +++ b/css/explore-course.css @@ -81,7 +81,7 @@ body { color: var(--text-color-white); } -.c-image img { +.course-image img { position: absolute; left: 40vw; width: 6%; diff --git a/css/explore-privacy.css b/css/explore-privacy.css index 493bf00..5c1343b 100644 --- a/css/explore-privacy.css +++ b/css/explore-privacy.css @@ -106,7 +106,7 @@ body { /* LEARN MORE BUTTON */ .button-learn { - /* display: flex; */ + display: flex; margin-top: 2vw; } .button-learn img{ @@ -121,6 +121,7 @@ body { color: var(--text-color-white); font-size: 1.2vw; margin-left: 1vw; + margin-top: 2vw; border-radius: 2vw; transition: all 0.8s, color 0.3s 0.3s; } @@ -130,7 +131,10 @@ body { color: var(--hover-text-black); cursor: pointer; } - +.start-with i{ + font-size: 1.2vw; + color: var(--text-color-white); +} /* FOOTER SECTION */ /* FOOTER LIST */ diff --git a/css/frontend-course.css b/css/frontend-course.css index a05a01f..0c68258 100644 --- a/css/frontend-course.css +++ b/css/frontend-course.css @@ -86,7 +86,7 @@ body { } -.c-image img { +.course-image img { position: absolute; left: 40vw; width: 6%; diff --git a/css/hacking-course.css b/css/hacking-course.css index 6085924..e9917f3 100644 --- a/css/hacking-course.css +++ b/css/hacking-course.css @@ -85,7 +85,7 @@ body { } -.c-image img { +.course-image img { position: absolute; left: 40vw; width: 6%; diff --git a/css/index.css b/css/index.css index c5cc664..75354c4 100644 --- a/css/index.css +++ b/css/index.css @@ -20,14 +20,6 @@ html{ display: flex; justify-content: space-between; } - /* - .navbar { - display: flex; - width: 100%; - justify-content: space-between; - background-color: #deb5b5; - border: none; - } */ .logo { margin: 2vw; @@ -70,10 +62,20 @@ html{ text-decoration: none; color: var(--text-color-white); } - +/* MENU ICON */ +.menu-icon{ + display: none; +} +#close{ + display: none; +} +.side-panel{ + display: none; +} .buttons-register { display: flex; margin-top: 2vw; + } .register { background-color: var(--black-background); @@ -426,4 +428,14 @@ transform: scale(1.2); .footer-right ul li:hover::after { width: 100%; } +.copyright{ + color: var(--text-color-white); + display: block; +} +.copyright p{ + margin: auto; + display: flex; + justify-content: center; + align-items: center; +} \ No newline at end of file diff --git a/css/ui-ux-course.css b/css/ui-ux-course.css index aeb411d..d453057 100644 --- a/css/ui-ux-course.css +++ b/css/ui-ux-course.css @@ -81,7 +81,7 @@ body { background-color: var(--black-background); color: var(--text-color-white); } -.c-image img { +.course-image img { position: absolute; left: 40vw; width: 6%; diff --git a/css/web-course.css b/css/web-course.css index c6857a6..119b5ce 100644 --- a/css/web-course.css +++ b/css/web-course.css @@ -85,7 +85,7 @@ body { } -.c-image img { +.course-image img { position: absolute; left: 40vw; width: 6%; diff --git a/index.html b/index.html index 7391bf5..7c14b8e 100644 --- a/index.html +++ b/index.html @@ -10,6 +10,7 @@ + @@ -17,13 +18,26 @@
+ + + +
+ +

Side Panel Content

+ +
+ +
@@ -82,8 +96,8 @@
DEVELOPMENT SKILLS
exceptional experience.

@@ -171,9 +185,13 @@

SUBSCRIBE

+
+ \ No newline at end of file diff --git a/js/side-nav.js b/js/side-nav.js new file mode 100644 index 0000000..46f1e4b --- /dev/null +++ b/js/side-nav.js @@ -0,0 +1,9 @@ +function sideOpen() { + let open = document.getElementById("mobile-menu"); + open.style.width = "90%"; + +} +function sideClose() { + let open = document.getElementById("mobile-menu"); + open.style.width = "0"; +} diff --git a/mobileports/explore-course.css b/mobileports/explore-course.css new file mode 100644 index 0000000..fd01d9c --- /dev/null +++ b/mobileports/explore-course.css @@ -0,0 +1,118 @@ +@media (max-width: 900px) { + .logo { + margin: 4vw; + font-size: 5vw; + } + .left h6 { + font-size: 2.3vw; + } + .list-items { + display: none; + } + /* HERO HEAD */ + .course-image img { + display: none; + } + + .courses-navbar { + margin-top: 4vw; + line-height: 10vw; + + } + .courses-navbar .buttons{ + width: 100%; + margin: auto ; + } + + .btn { + width: 30vw; + height: 5vw; + font-size: 2.6vw; + position: relative; + } + /* COURSES-CONTAINER */ + .courses-container { + display: block; + } + + .course-box { + border: 2px solid var(--border-line); + height: 30vw; + width: 80%; + margin: 4vw auto; + } + + /* LEFT COURSE */ + .left-course { + float: left; + width: 50%; + } + .left-course img { + float: left; + width: 70%; + margin: 1vw auto; + } + + /* RIGHT COURSE */ + .right-course { + float: right; + width: 50%; + } + .right-course h5 { + font-size: 3vw; + margin-top: 1vw; + height: 5vw; + } + .right-course p { + font-size: 3vw; + margin-top: 2vw; + } + .right-course .price { + font-size: 3vw; + } + .enroll { + width: 15vw; + height: 5vw; + font-size: 2vw; + position: relative; + } + /* DOWNLOAD CURRICULAM */ + .enroll-button a i { + font-size: 4vw; + } + + /* FOOTER SECTION */ + + /* FOTOTER CONNECTION */ + .footer-connection { + font-size: 10vw; + } + + /* FOOTER LEFT */ + .footer-list { + display: inline-block; + } + .footer-left { + display: flex; + justify-content: center; + align-items: center; + margin: 2vw auto; + width: 100%; + } + .subscribe { + margin-top: 4vw; + } + .subscribe h4 { + font-size: 3vw; + margin: auto; + } + .footer-right { + width: 100%; + display: flex; + } + .footer-right ul { + font-size: 3.6vw; + margin: auto; + margin-bottom: 6vw; + } +} diff --git a/mobileports/explore-development.css b/mobileports/explore-development.css new file mode 100644 index 0000000..d0502ed --- /dev/null +++ b/mobileports/explore-development.css @@ -0,0 +1,81 @@ +@media (max-width: 900px) { + .logo { + margin: 4vw; + font-size: 5vw; + } + .left h6 { + font-size: 2.3vw; + } + .list-items { + display: none; + } + + /* HERO SECITON */ + + .left-right-development { + display: block; + } + + .left-development { + width: 100%; + } + .right-development { + width: 100%; + } + + .right-development h1 { + font-size: 4vw; + } + .right-development p { + font-size: 3vw; + line-height: 3.4vw; + width: 100%; + } + + .start-with { + width: 20vw; + height: 5vw; + font-size: 2.2vw; + top: 1vw; + bottom: 2vw; + } + + .start-with i { + font-size: 3.2vw; + } + + /* FOOTER SECTION */ + + /* FOTOTER CONNECTION */ + .footer-connection { + font-size: 10vw; + } + + /* FOOTER LEFT */ + .footer-list { + display: inline-block; + } + .footer-left { + display: flex; + justify-content: center; + align-items: center; + margin: 2vw auto; + width: 100%; + } + .subscribe { + margin-top: 4vw; + } + .subscribe h4 { + font-size: 3vw; + margin: auto; + } + .footer-right { + width: 100%; + display: flex; + } + .footer-right ul { + font-size: 3.6vw; + margin: auto; + margin-bottom: 6vw; + } +} diff --git a/mobileports/explore-hacking.css b/mobileports/explore-hacking.css new file mode 100644 index 0000000..d0502ed --- /dev/null +++ b/mobileports/explore-hacking.css @@ -0,0 +1,81 @@ +@media (max-width: 900px) { + .logo { + margin: 4vw; + font-size: 5vw; + } + .left h6 { + font-size: 2.3vw; + } + .list-items { + display: none; + } + + /* HERO SECITON */ + + .left-right-development { + display: block; + } + + .left-development { + width: 100%; + } + .right-development { + width: 100%; + } + + .right-development h1 { + font-size: 4vw; + } + .right-development p { + font-size: 3vw; + line-height: 3.4vw; + width: 100%; + } + + .start-with { + width: 20vw; + height: 5vw; + font-size: 2.2vw; + top: 1vw; + bottom: 2vw; + } + + .start-with i { + font-size: 3.2vw; + } + + /* FOOTER SECTION */ + + /* FOTOTER CONNECTION */ + .footer-connection { + font-size: 10vw; + } + + /* FOOTER LEFT */ + .footer-list { + display: inline-block; + } + .footer-left { + display: flex; + justify-content: center; + align-items: center; + margin: 2vw auto; + width: 100%; + } + .subscribe { + margin-top: 4vw; + } + .subscribe h4 { + font-size: 3vw; + margin: auto; + } + .footer-right { + width: 100%; + display: flex; + } + .footer-right ul { + font-size: 3.6vw; + margin: auto; + margin-bottom: 6vw; + } +} diff --git a/mobileports/explore-privacy.css b/mobileports/explore-privacy.css new file mode 100644 index 0000000..d0502ed --- /dev/null +++ b/mobileports/explore-privacy.css @@ -0,0 +1,81 @@ +@media (max-width: 900px) { + .logo { + margin: 4vw; + font-size: 5vw; + } + .left h6 { + font-size: 2.3vw; + } + .list-items { + display: none; + } + + /* HERO SECITON */ + + .left-right-development { + display: block; + } + + .left-development { + width: 100%; + } + .right-development { + width: 100%; + } + + .right-development h1 { + font-size: 4vw; + } + .right-development p { + font-size: 3vw; + line-height: 3.4vw; + width: 100%; + } + + .start-with { + width: 20vw; + height: 5vw; + font-size: 2.2vw; + top: 1vw; + bottom: 2vw; + } + + .start-with i { + font-size: 3.2vw; + } + + /* FOOTER SECTION */ + + /* FOTOTER CONNECTION */ + .footer-connection { + font-size: 10vw; + } + + /* FOOTER LEFT */ + .footer-list { + display: inline-block; + } + .footer-left { + display: flex; + justify-content: center; + align-items: center; + margin: 2vw auto; + width: 100%; + } + .subscribe { + margin-top: 4vw; + } + .subscribe h4 { + font-size: 3vw; + margin: auto; + } + .footer-right { + width: 100%; + display: flex; + } + .footer-right ul { + font-size: 3.6vw; + margin: auto; + margin-bottom: 6vw; + } +} diff --git a/mobileports/frontend-course.css b/mobileports/frontend-course.css new file mode 100644 index 0000000..fd01d9c --- /dev/null +++ b/mobileports/frontend-course.css @@ -0,0 +1,118 @@ +@media (max-width: 900px) { + .logo { + margin: 4vw; + font-size: 5vw; + } + .left h6 { + font-size: 2.3vw; + } + .list-items { + display: none; + } + /* HERO HEAD */ + .course-image img { + display: none; + } + + .courses-navbar { + margin-top: 4vw; + line-height: 10vw; + + } + .courses-navbar .buttons{ + width: 100%; + margin: auto ; + } + + .btn { + width: 30vw; + height: 5vw; + font-size: 2.6vw; + position: relative; + } + /* COURSES-CONTAINER */ + .courses-container { + display: block; + } + + .course-box { + border: 2px solid var(--border-line); + height: 30vw; + width: 80%; + margin: 4vw auto; + } + + /* LEFT COURSE */ + .left-course { + float: left; + width: 50%; + } + .left-course img { + float: left; + width: 70%; + margin: 1vw auto; + } + + /* RIGHT COURSE */ + .right-course { + float: right; + width: 50%; + } + .right-course h5 { + font-size: 3vw; + margin-top: 1vw; + height: 5vw; + } + .right-course p { + font-size: 3vw; + margin-top: 2vw; + } + .right-course .price { + font-size: 3vw; + } + .enroll { + width: 15vw; + height: 5vw; + font-size: 2vw; + position: relative; + } + /* DOWNLOAD CURRICULAM */ + .enroll-button a i { + font-size: 4vw; + } + + /* FOOTER SECTION */ + + /* FOTOTER CONNECTION */ + .footer-connection { + font-size: 10vw; + } + + /* FOOTER LEFT */ + .footer-list { + display: inline-block; + } + .footer-left { + display: flex; + justify-content: center; + align-items: center; + margin: 2vw auto; + width: 100%; + } + .subscribe { + margin-top: 4vw; + } + .subscribe h4 { + font-size: 3vw; + margin: auto; + } + .footer-right { + width: 100%; + display: flex; + } + .footer-right ul { + font-size: 3.6vw; + margin: auto; + margin-bottom: 6vw; + } +} diff --git a/mobileports/hacking-course.css b/mobileports/hacking-course.css new file mode 100644 index 0000000..fd01d9c --- /dev/null +++ b/mobileports/hacking-course.css @@ -0,0 +1,118 @@ +@media (max-width: 900px) { + .logo { + margin: 4vw; + font-size: 5vw; + } + .left h6 { + font-size: 2.3vw; + } + .list-items { + display: none; + } + /* HERO HEAD */ + .course-image img { + display: none; + } + + .courses-navbar { + margin-top: 4vw; + line-height: 10vw; + + } + .courses-navbar .buttons{ + width: 100%; + margin: auto ; + } + + .btn { + width: 30vw; + height: 5vw; + font-size: 2.6vw; + position: relative; + } + /* COURSES-CONTAINER */ + .courses-container { + display: block; + } + + .course-box { + border: 2px solid var(--border-line); + height: 30vw; + width: 80%; + margin: 4vw auto; + } + + /* LEFT COURSE */ + .left-course { + float: left; + width: 50%; + } + .left-course img { + float: left; + width: 70%; + margin: 1vw auto; + } + + /* RIGHT COURSE */ + .right-course { + float: right; + width: 50%; + } + .right-course h5 { + font-size: 3vw; + margin-top: 1vw; + height: 5vw; + } + .right-course p { + font-size: 3vw; + margin-top: 2vw; + } + .right-course .price { + font-size: 3vw; + } + .enroll { + width: 15vw; + height: 5vw; + font-size: 2vw; + position: relative; + } + /* DOWNLOAD CURRICULAM */ + .enroll-button a i { + font-size: 4vw; + } + + /* FOOTER SECTION */ + + /* FOTOTER CONNECTION */ + .footer-connection { + font-size: 10vw; + } + + /* FOOTER LEFT */ + .footer-list { + display: inline-block; + } + .footer-left { + display: flex; + justify-content: center; + align-items: center; + margin: 2vw auto; + width: 100%; + } + .subscribe { + margin-top: 4vw; + } + .subscribe h4 { + font-size: 3vw; + margin: auto; + } + .footer-right { + width: 100%; + display: flex; + } + .footer-right ul { + font-size: 3.6vw; + margin: auto; + margin-bottom: 6vw; + } +} diff --git a/mobileports/index-port.css b/mobileports/index-port.css new file mode 100644 index 0000000..d716283 --- /dev/null +++ b/mobileports/index-port.css @@ -0,0 +1,143 @@ +@media (max-width: 900px) { + .logo { + margin: 4vw; + font-size: 5vw; + } + .left h6 { + font-size: 2.3vw; + } + .list-items { + display: none; + } + .menu-icon i { + float: right; + } + .menu-icon { + display: initial; + color: var(--text-color-white); + margin: 2vw; + font-size: 8vw; + position: fixed; + width: 90%; + height: 100vh; + z-index: 1; + right: 0; + background-color: red; + } + .menu-icon { + display: initial; + color: var(--text-color-white); + margin: 2vw; + font-size: 8vw; + position: fixed; + width: 90%; + height: 100vh; + z-index: 1; + right: 0; + background-color: red; + } + + .side-panel { + display: initial; + width: 0; + height: 100%; + position: fixed; + top: 0; + left: 10vw; + background-color: #333; + overflow-x: hidden; + transition: 0.5s; + padding-top: 60px; + color: white; + } + + .side-panel i { + font-size: 2em; + /* cursor: pointer; */ + position: fixed; + top: 10px; + left: 10px; + z-index: 2; + + } + + .side-panel.open { + width: 250px; + } + + .side-panel p { + padding: 10px; + } + #close{ + display: initial; + color: green; + position: absolute; + right: 20vw; + } + + + .btn1 { + width: 15vw; + height: 5vw; + font-size: 2.2vw; + top: 1vw; + } + + .btn-col1, + .btn-col2, + .btn-col3, + .btn-col4 { + width: 15vw; + height: 5vw; + font-size: 2.2vw; + top: 4vw; + position: relative; + } + + /* col1 AND col3 */ + + .right-campus-col1 p, + .right-campus-col3 p { + font-size: 2.3vw; + } + /* col2 and col4*/ + .left-campus-col2 p, + .left-campus-col4 p { + font-size: 2.3vw; + } + + /* FOOTER SECTION */ + + /* FOTOTER CONNECTION */ + .footer-connection { + font-size: 10vw; + } + + /* FOOTER LEFT */ + .footer-list { + display: inline-block; + } + .footer-left { + display: flex; + justify-content: center; + align-items: center; + margin: 2vw auto; + width: 100%; + } + .subscribe { + margin-top: 4vw; + } + .subscribe h4 { + font-size: 3vw; + margin: auto; + } + .footer-right { + width: 100%; + display: flex; + } + .footer-right ul { + font-size: 3.6vw; + margin: auto; + margin-bottom: 6vw; + } +} diff --git a/mobileports/ui-ux-course.css b/mobileports/ui-ux-course.css new file mode 100644 index 0000000..fd01d9c --- /dev/null +++ b/mobileports/ui-ux-course.css @@ -0,0 +1,118 @@ +@media (max-width: 900px) { + .logo { + margin: 4vw; + font-size: 5vw; + } + .left h6 { + font-size: 2.3vw; + } + .list-items { + display: none; + } + /* HERO HEAD */ + .course-image img { + display: none; + } + + .courses-navbar { + margin-top: 4vw; + line-height: 10vw; + + } + .courses-navbar .buttons{ + width: 100%; + margin: auto ; + } + + .btn { + width: 30vw; + height: 5vw; + font-size: 2.6vw; + position: relative; + } + /* COURSES-CONTAINER */ + .courses-container { + display: block; + } + + .course-box { + border: 2px solid var(--border-line); + height: 30vw; + width: 80%; + margin: 4vw auto; + } + + /* LEFT COURSE */ + .left-course { + float: left; + width: 50%; + } + .left-course img { + float: left; + width: 70%; + margin: 1vw auto; + } + + /* RIGHT COURSE */ + .right-course { + float: right; + width: 50%; + } + .right-course h5 { + font-size: 3vw; + margin-top: 1vw; + height: 5vw; + } + .right-course p { + font-size: 3vw; + margin-top: 2vw; + } + .right-course .price { + font-size: 3vw; + } + .enroll { + width: 15vw; + height: 5vw; + font-size: 2vw; + position: relative; + } + /* DOWNLOAD CURRICULAM */ + .enroll-button a i { + font-size: 4vw; + } + + /* FOOTER SECTION */ + + /* FOTOTER CONNECTION */ + .footer-connection { + font-size: 10vw; + } + + /* FOOTER LEFT */ + .footer-list { + display: inline-block; + } + .footer-left { + display: flex; + justify-content: center; + align-items: center; + margin: 2vw auto; + width: 100%; + } + .subscribe { + margin-top: 4vw; + } + .subscribe h4 { + font-size: 3vw; + margin: auto; + } + .footer-right { + width: 100%; + display: flex; + } + .footer-right ul { + font-size: 3.6vw; + margin: auto; + margin-bottom: 6vw; + } +} diff --git a/mobileports/web-course.css b/mobileports/web-course.css new file mode 100644 index 0000000..fd01d9c --- /dev/null +++ b/mobileports/web-course.css @@ -0,0 +1,118 @@ +@media (max-width: 900px) { + .logo { + margin: 4vw; + font-size: 5vw; + } + .left h6 { + font-size: 2.3vw; + } + .list-items { + display: none; + } + /* HERO HEAD */ + .course-image img { + display: none; + } + + .courses-navbar { + margin-top: 4vw; + line-height: 10vw; + + } + .courses-navbar .buttons{ + width: 100%; + margin: auto ; + } + + .btn { + width: 30vw; + height: 5vw; + font-size: 2.6vw; + position: relative; + } + /* COURSES-CONTAINER */ + .courses-container { + display: block; + } + + .course-box { + border: 2px solid var(--border-line); + height: 30vw; + width: 80%; + margin: 4vw auto; + } + + /* LEFT COURSE */ + .left-course { + float: left; + width: 50%; + } + .left-course img { + float: left; + width: 70%; + margin: 1vw auto; + } + + /* RIGHT COURSE */ + .right-course { + float: right; + width: 50%; + } + .right-course h5 { + font-size: 3vw; + margin-top: 1vw; + height: 5vw; + } + .right-course p { + font-size: 3vw; + margin-top: 2vw; + } + .right-course .price { + font-size: 3vw; + } + .enroll { + width: 15vw; + height: 5vw; + font-size: 2vw; + position: relative; + } + /* DOWNLOAD CURRICULAM */ + .enroll-button a i { + font-size: 4vw; + } + + /* FOOTER SECTION */ + + /* FOTOTER CONNECTION */ + .footer-connection { + font-size: 10vw; + } + + /* FOOTER LEFT */ + .footer-list { + display: inline-block; + } + .footer-left { + display: flex; + justify-content: center; + align-items: center; + margin: 2vw auto; + width: 100%; + } + .subscribe { + margin-top: 4vw; + } + .subscribe h4 { + font-size: 3vw; + margin: auto; + } + .footer-right { + width: 100%; + display: flex; + } + .footer-right ul { + font-size: 3.6vw; + margin: auto; + margin-bottom: 6vw; + } +} diff --git a/template/explore-course.html b/template/explore-course.html index d1294ca..d7e8539 100644 --- a/template/explore-course.html +++ b/template/explore-course.html @@ -9,6 +9,7 @@ + @@ -32,7 +33,7 @@
-
+

COURSES

diff --git a/template/explore-development.html b/template/explore-development.html index c0326a9..e06d475 100644 --- a/template/explore-development.html +++ b/template/explore-development.html @@ -8,6 +8,7 @@ Development Skill's + diff --git a/template/explore-hacking.html b/template/explore-hacking.html index c53c131..a5cd0fc 100644 --- a/template/explore-hacking.html +++ b/template/explore-hacking.html @@ -8,6 +8,7 @@ Hacking + diff --git a/template/explore-privacy.html b/template/explore-privacy.html index fdcf690..a682b1c 100644 --- a/template/explore-privacy.html +++ b/template/explore-privacy.html @@ -7,9 +7,10 @@ Dive into Privacy - + + @@ -47,7 +48,7 @@

Explore What We Provide

@@ -83,6 +84,7 @@

SUBSCRIBE

  • Privacy Policy
  • + diff --git a/template/frontend-course.html b/template/frontend-course.html index 97a817a..8e4f4fc 100644 --- a/template/frontend-course.html +++ b/template/frontend-course.html @@ -8,6 +8,7 @@ Frontend/Backend Course + @@ -32,7 +33,7 @@
    -
    +

    COURSES

    diff --git a/template/hacking-course.html b/template/hacking-course.html index d52e49f..6099b4c 100644 --- a/template/hacking-course.html +++ b/template/hacking-course.html @@ -8,6 +8,7 @@ Hacking Course + @@ -32,7 +33,7 @@
    -
    +

    COURSES

    diff --git a/template/ui-ux-course.html b/template/ui-ux-course.html index 297f615..528802b 100644 --- a/template/ui-ux-course.html +++ b/template/ui-ux-course.html @@ -8,6 +8,7 @@ Ui-Ux Course + @@ -32,7 +33,7 @@
    -
    +

    COURSES

    diff --git a/template/web-course.html b/template/web-course.html index f2d6f05..2f98cc0 100644 --- a/template/web-course.html +++ b/template/web-course.html @@ -8,6 +8,7 @@ Web-Development Course + @@ -32,7 +33,7 @@
    -
    +

    COURSES