From d90a80935b90e09fc736c5a365d05af7ac9a5352 Mon Sep 17 00:00:00 2001 From: bahador Date: Thu, 20 Jul 2023 12:10:59 +0100 Subject: [PATCH 01/10] new coment added --- index.html | 1 + 1 file changed, 1 insertion(+) diff --git a/index.html b/index.html index 3e742ef04..f9f0c5745 100755 --- a/index.html +++ b/index.html @@ -14,6 +14,7 @@ + From 9386e284f30f8ccd26134f768ce1febee7fd0247 Mon Sep 17 00:00:00 2001 From: bahador Date: Thu, 20 Jul 2023 12:15:53 +0100 Subject: [PATCH 02/10] removed new line --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index f9f0c5745..7a7d7bf9d 100755 --- a/index.html +++ b/index.html @@ -14,7 +14,7 @@ - + From c8f3436d8d4d543e590833094addc40f03de384f Mon Sep 17 00:00:00 2001 From: bahador Date: Mon, 24 Jul 2023 16:58:17 +0100 Subject: [PATCH 03/10] added nave bar working on hero section is continue --- css/style.css | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ index.html | 26 ++++++++++++++++++++++++++ 2 files changed, 75 insertions(+) diff --git a/css/style.css b/css/style.css index 5cb025cef..070e83e21 100755 --- a/css/style.css +++ b/css/style.css @@ -4,6 +4,10 @@ body { font-family: 'Roboto', sans-serif; -webkit-font-smoothing: antialiased; + background-image: url("img/first-background.jpg"); + text-align: center; + color:aliceblue; + } /** @@ -15,5 +19,50 @@ body { * * - When using Flexbox, remember the items you want to move around need to be inside a parent container set to 'display: flex' */ +/* .grid-for-nav { + display: grid; + grid-template-columns: repeat(2, 50%); + align-items: center; + width: 86%; + margin: 0 auto; +} +.flex-nav { + display: flex; + gap: 6%; + justify-content: end; + font-size: 0.9rem; + width: 98%; +} */ +.nav-bar-grid { + display: grid; + grid-template-columns: repeat(2, 50%); + align-items: center; + width: 86%; + margin: 0 auto; + padding-top: 0.75rem; + padding-bottom: 0.50rem; +} + +.nav-bar { + display: flex; + justify-content: end; + gap: 6%; + width: 98%; + font-size: 0.9rem; +} + +a { + text-decoration: none; + color: black; +} + +/* Hero section */ +.background-img { + background-image: url("/HTML-CSS-Module-Project/img/first-background.jpg"); + height: 110vh; + width: 100%; + background-size: cover; + +} diff --git a/index.html b/index.html index 7a7d7bf9d..d291e4e37 100755 --- a/index.html +++ b/index.html @@ -14,6 +14,32 @@ + + + + + +
+
+

Introducing Karma

+

Bring WiFi With you,everywhere you go.

+ +
+ +
From a6269df00f69f2c5e6b53e6e9ec1ff8943812f61 Mon Sep 17 00:00:00 2001 From: bahador Date: Mon, 24 Jul 2023 21:39:46 +0100 Subject: [PATCH 04/10] added btn some style and HTML --- css/style.css | 49 ++++++++++++++++++++++++++++++++----------------- index.html | 12 +++++++----- 2 files changed, 39 insertions(+), 22 deletions(-) diff --git a/css/style.css b/css/style.css index 070e83e21..5de795234 100755 --- a/css/style.css +++ b/css/style.css @@ -5,8 +5,8 @@ body { font-family: 'Roboto', sans-serif; -webkit-font-smoothing: antialiased; background-image: url("img/first-background.jpg"); - text-align: center; - color:aliceblue; + + } @@ -19,20 +19,9 @@ body { * * - When using Flexbox, remember the items you want to move around need to be inside a parent container set to 'display: flex' */ -/* .grid-for-nav { - display: grid; - grid-template-columns: repeat(2, 50%); - align-items: center; - width: 86%; - margin: 0 auto; -} -.flex-nav { - display: flex; - gap: 6%; - justify-content: end; - font-size: 0.9rem; - width: 98%; -} */ + + + .nav-bar-grid { display: grid; grid-template-columns: repeat(2, 50%); @@ -40,7 +29,7 @@ body { width: 86%; margin: 0 auto; padding-top: 0.75rem; - padding-bottom: 0.50rem; + padding-bottom: 0.30rem; } .nav-bar { @@ -62,7 +51,33 @@ a { height: 110vh; width: 100%; background-size: cover; + display: flex; + justify-content: center; + flex-direction: column; + align-items: center; + color: white; } +.all-text { + text-align: center; + font-weight: 1000; + +} +.interoducin { + color:aqua; + +} + + +.btn { + margin-top: 10%; + padding: 16px 32px; + border-radius: 8px; + background-color: #F15B2A; + border: none; + font-size: 1.6vw; + font-weight: 100; + +} \ No newline at end of file diff --git a/index.html b/index.html index d291e4e37..8453e6dc2 100755 --- a/index.html +++ b/index.html @@ -33,13 +33,15 @@
-
-

Introducing Karma

-

Bring WiFi With you,everywhere you go.

- -
+
+ Introducing Karma +

Bring WiFi with you, everywhere you go.

+ +
+
+ From 68ce85e0ed37b108fc1fa11dcfc7aa2e2d336607 Mon Sep 17 00:00:00 2001 From: bahador Date: Tue, 25 Jul 2023 01:59:06 +0100 Subject: [PATCH 05/10] added SVG VECTOR ICONS ALONG WITH TEXT UNDERNEATH THEM --- css/style.css | 43 ++++++++++++++++++++++++++++++++++++++++--- index.html | 30 ++++++++++++++++++++++++++++-- 2 files changed, 68 insertions(+), 5 deletions(-) diff --git a/css/style.css b/css/style.css index 5de795234..217a6b746 100755 --- a/css/style.css +++ b/css/style.css @@ -38,6 +38,7 @@ body { gap: 6%; width: 98%; font-size: 0.9rem; + padding-top: 3px; } a { @@ -45,11 +46,17 @@ a { color: black; } +a:hover { +color: #F15B2A; +} + + /* Hero section */ .background-img { background-image: url("/HTML-CSS-Module-Project/img/first-background.jpg"); height: 110vh; width: 100%; + background-position: center; background-size: cover; display: flex; justify-content: center; @@ -57,7 +64,7 @@ a { align-items: center; color: white; -} +} .all-text { @@ -66,13 +73,22 @@ a { } .interoducin { - color:aqua; + color:aliceblue; + font-size: 4.6vw; + font-weight: 100; } +.interoducin-2 { + color: white; + font-size: 2.5vw; + font-weight: 100; + +} + .btn { - margin-top: 10%; + margin-top: 4%; padding: 16px 32px; border-radius: 8px; background-color: #F15B2A; @@ -80,4 +96,25 @@ a { font-size: 1.6vw; font-weight: 100; +} +h1 { + text-align: center; + font-size: 3.8vw ; + font-weight: 300; + padding-top: 80px; +} + +.devices-coffee-refill-section { + display: flex; + justify-content: space-evenly; +} + +.icons-discraption { + display: flex; + justify-content: space-evenly; + font-size: 150%; +} +.icons-discraption { + margin-left: 30px; + } \ No newline at end of file diff --git a/index.html b/index.html index 8453e6dc2..4d44a4369 100755 --- a/index.html +++ b/index.html @@ -35,13 +35,39 @@
Introducing Karma -

Bring WiFi with you, everywhere you go.

+

Bring WiFi with you, everywhere you go.

- + +

Everyone needs a little Karma.

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

Internet for all devices

+

Boost your productivity

+

Pay as You Go

+
From 06680d3b749fa58d10eb061612c7f45be212cad5 Mon Sep 17 00:00:00 2001 From: bahador Date: Tue, 25 Jul 2023 15:10:11 +0100 Subject: [PATCH 06/10] added new section log and socila media adede --- css/style.css | 49 +++++++++++++++++++++++++++++++++++++------ index.html | 58 ++++++++++++++++++++++++++++++++++++++++++++++----- 2 files changed, 96 insertions(+), 11 deletions(-) diff --git a/css/style.css b/css/style.css index 217a6b746..543c948a7 100755 --- a/css/style.css +++ b/css/style.css @@ -72,14 +72,14 @@ color: #F15B2A; font-weight: 1000; } -.interoducin { - color:aliceblue; +.introduction { + color:rgb(255, 240, 247); font-size: 4.6vw; font-weight: 100; } -.interoducin-2 { +.introduction-2 { color: white; font-size: 2.5vw; font-weight: 100; @@ -109,12 +109,49 @@ h1 { justify-content: space-evenly; } -.icons-discraption { +.icons-description { display: flex; justify-content: space-evenly; font-size: 150%; + font-weight: } -.icons-discraption { +.icons-description { margin-left: 30px; - + +} +.boost-your- { + margin-right: 30px; +} +.line { + width: 84%; + margin: 0 auto; + background-color: #b4bcc36a; + height: 0.1vw; + margin-top: 5rem; + +} +.join-us { + text-align: center; +} +.media-logo { + display: flex; + justify-content: center; + gap: 12px; + +} +.logo-s { + display: flex; + align-items: center; + justify-content: center; + border: 0.1vw solid #d0d7dd6a; + padding: 0.6rem 0.7rem; + border-radius: 112%; + transition: border 1.2s + +} +.kar-Mobility { + text-align: center; + padding-top: 1rem; + padding-bottom:5rem ; + color: #868e96; } \ No newline at end of file diff --git a/index.html b/index.html index 4d44a4369..d66aff7a6 100755 --- a/index.html +++ b/index.html @@ -34,8 +34,8 @@
- Introducing Karma -

Bring WiFi with you, everywhere you go.

+ Introducing Karma +

Bring WiFi with you, everywhere you go.

@@ -63,11 +63,59 @@

Everyone needs a little Karma.

-
+

Internet for all devices

-

Boost your productivity

-

Pay as You Go

+

Boost your productivity

+

Pay as You Go          

+ +
+

Join us on

+ + + +
© karma Mobility,inc
+ From 52ca0889711d631900fc5786d0061743b5bacbb3 Mon Sep 17 00:00:00 2001 From: bahador Date: Wed, 26 Jul 2023 16:28:36 +0100 Subject: [PATCH 07/10] added new file for writing css gird in a separate flle --- index.html | 6 ++++++ level-2/grid.css | 9 +++++++++ 2 files changed, 15 insertions(+) create mode 100644 level-2/grid.css diff --git a/index.html b/index.html index d66aff7a6..3d464d6d4 100755 --- a/index.html +++ b/index.html @@ -7,6 +7,7 @@ + @@ -69,6 +70,11 @@

Everyone needs a little Karma.

Pay as You Go          

+ +
+ picture of a woman smiling while watching on her ipad +
"Wherever I am, I just don't worry about my connection anymore!"
+

Join us on

diff --git a/level-2/grid.css b/level-2/grid.css new file mode 100644 index 000000000..e20f12c02 --- /dev/null +++ b/level-2/grid.css @@ -0,0 +1,9 @@ +.grid-continer { + display: grid; + grid-template-columns: 1fr 1fr ; + grid-template-rows: 50px 50px; + +} +.grid-continer { + background-color: aqua;git +} \ No newline at end of file From 496c530b6328710c6b8eb62949bcf659c5fab7a6 Mon Sep 17 00:00:00 2001 From: bahador Date: Wed, 26 Jul 2023 16:49:20 +0100 Subject: [PATCH 08/10] started-part-2 --- css/style.css | 11 +++++++++++ index.html | 4 ++-- level-2/grid.css | 15 ++++++++------- 3 files changed, 21 insertions(+), 9 deletions(-) diff --git a/css/style.css b/css/style.css index 543c948a7..d8248700a 100755 --- a/css/style.css +++ b/css/style.css @@ -154,4 +154,15 @@ h1 { padding-top: 1rem; padding-bottom:5rem ; color: #868e96; +} + +.container { + display: grid; + grid-template-columns: 1fr 1fr; + background-color: #FCEFEB; + +} + +.title-2 { + color: red; } \ No newline at end of file diff --git a/index.html b/index.html index 3d464d6d4..a988dcd37 100755 --- a/index.html +++ b/index.html @@ -71,8 +71,8 @@

Everyone needs a little Karma.

-
- picture of a woman smiling while watching on her ipad +
+ picture of a woman smiling while watching on her ipad
"Wherever I am, I just don't worry about my connection anymore!"
diff --git a/level-2/grid.css b/level-2/grid.css index e20f12c02..e383b8106 100644 --- a/level-2/grid.css +++ b/level-2/grid.css @@ -1,9 +1,10 @@ -.grid-continer { - display: grid; - grid-template-columns: 1fr 1fr ; - grid-template-rows: 50px 50px; +.container { + display: grid; + grid-template-columns: auto 1fr; + background-color: #FCEFEB; + justify-items: center; } -.grid-continer { - background-color: aqua;git -} \ No newline at end of file +.title-2 { + color: greenyellow; +} From bc1a798ee3742c119342c0a4b89293f9c8cc8ce2 Mon Sep 17 00:00:00 2001 From: bahador Date: Sat, 29 Jul 2023 20:02:51 +0100 Subject: [PATCH 09/10] added new code working on part-2 --- css/style.css | 43 +++++++++++++++++++++++++++++++++++++------ index.html | 8 ++++++-- level-2/grid.css | 8 ++++++-- 3 files changed, 49 insertions(+), 10 deletions(-) diff --git a/css/style.css b/css/style.css index d8248700a..01c1c68fd 100755 --- a/css/style.css +++ b/css/style.css @@ -69,7 +69,7 @@ color: #F15B2A; .all-text { text-align: center; - font-weight: 1000; + font-weight: ; } .introduction { @@ -127,7 +127,7 @@ h1 { margin: 0 auto; background-color: #b4bcc36a; height: 0.1vw; - margin-top: 5rem; + margin-top: 6rem; } .join-us { @@ -140,7 +140,7 @@ h1 { } .logo-s { - display: flex; + display: flex; align-items: center; justify-content: center; border: 0.1vw solid #d0d7dd6a; @@ -157,12 +157,43 @@ h1 { } .container { - display: grid; + display: flex; + align-items:center; + background-color: #F15B2A; + margin-top: 10%; + /* display: grid; grid-template-columns: 1fr 1fr; - background-color: #FCEFEB; + background-color: #FCEFEB; */ +} +.btn-text-wraper { + display: flex; + justify-content: space-between; + flex-direction: column ; + } .title-2 { - color: red; + color: white; + margin: + font-size: 30px; + padding-bottom: 1x; + +} + .btn-2 { + padding: 1%; + margin-left: 37%; + margin-right: 37%; + margin-bottom: 0%; + /* margin: 4%; + padding: 16px 32px; + border-radius: 8px; + background-color: #b5f12a; + border: none; + font-size: 1.6vw; + font-weight: 100; */ +} + +.homepage-feature { + padding: 0% 15% 0% %; } \ No newline at end of file diff --git a/index.html b/index.html index a988dcd37..a54c33169 100755 --- a/index.html +++ b/index.html @@ -72,8 +72,12 @@

Everyone needs a little Karma.

- picture of a woman smiling while watching on her ipad -
"Wherever I am, I just don't worry about my connection anymore!"
+ picture of a woman smiling while watching on her ipad +
+
"Wherever I am, I just don't worry about my connection                   anymore!"
+ +
+

Join us on

diff --git a/level-2/grid.css b/level-2/grid.css index e383b8106..248b60afb 100644 --- a/level-2/grid.css +++ b/level-2/grid.css @@ -1,10 +1,14 @@ -.container { +/* .container { display: grid; grid-template-columns: auto 1fr; background-color: #FCEFEB; justify-items: center; } +.homepage-feature { + padding: 0% 10% 0% 20%; +} + .title-2 { color: greenyellow; -} +} */ From 6079f6ea4de01b656e96111e3d75e73ef5d8e371 Mon Sep 17 00:00:00 2001 From: bahador Date: Sat, 19 Aug 2023 10:58:28 +0100 Subject: [PATCH 10/10] added part-2 imag, text & btn added with css style --- css/style.css | 70 ++++++++++++++++++++++++++++++++++----------------- index.html | 22 ++++++++++------ 2 files changed, 62 insertions(+), 30 deletions(-) diff --git a/css/style.css b/css/style.css index 01c1c68fd..2aab21de1 100755 --- a/css/style.css +++ b/css/style.css @@ -166,34 +166,58 @@ h1 { background-color: #FCEFEB; */ } -.btn-text-wraper { +.grid-for-extended { + display: grid; + grid-template-columns: auto 1fr; + background-color: #fcefeb; + justify-items: center; +} + +.text--ext:after, +.text--ext:before { + color: #f15b2a; +} + +.text--ext:before { + content: open-quote; + font-size: 130%; +} + +.text--ext:after { + content: close-quote; + font-size: 130%; +} + +.text--ext { + font-size: 2.4em; + text-align: center; + color: #495057; +} + +.flex-text-btn { display: flex; - justify-content: space-between; - flex-direction: column ; - + flex-direction: column; + width: 60%; + padding-top: 10%; } -.title-2 { +.get-karma-today { + margin: 1.6rem auto; color: white; - margin: - font-size: 30px; - padding-bottom: 1x; - -} - .btn-2 { - padding: 1%; - margin-left: 37%; - margin-right: 37%; - margin-bottom: 0%; - /* margin: 4%; - padding: 16px 32px; + padding: 1rem 2rem; border-radius: 8px; - background-color: #b5f12a; - border: none; + text-align: center; font-size: 1.6vw; - font-weight: 100; */ + font-weight: 100; + transition: background-color 1.2s; +} + +.get-karma-today:hover, +.get-karma-today:active { + background-color: #f56e45; } -.homepage-feature { - padding: 0% 15% 0% %; -} \ No newline at end of file + + + + \ No newline at end of file diff --git a/index.html b/index.html index a54c33169..e48739e80 100755 --- a/index.html +++ b/index.html @@ -71,14 +71,22 @@

Everyone needs a little Karma.

-
- picture of a woman smiling while watching on her ipad -
-
"Wherever I am, I just don't worry about my connection                   anymore!"
- +
+ picture of a woman smiling while on her laptop +
+
+  Wherever I am, I just don't worry about my connection + anymore!  +
+ Get Karma today
- -
+

Join us on