From 1dd4bea7a595e30c6b15bd2c9d69b53cbb953517 Mon Sep 17 00:00:00 2001 From: Hema Kanamarlapudi Date: Mon, 28 Aug 2023 22:50:35 +0530 Subject: [PATCH 1/4] Added my readme.md --- Projects/hema_kanamarlapudi/README.md | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 Projects/hema_kanamarlapudi/README.md diff --git a/Projects/hema_kanamarlapudi/README.md b/Projects/hema_kanamarlapudi/README.md new file mode 100644 index 0000000..bd73999 --- /dev/null +++ b/Projects/hema_kanamarlapudi/README.md @@ -0,0 +1,2 @@ +Hi, this is Hema's Project +Basic portfolio project involving html and css From eced5434077ea02452459f63cbc8d0cdc655f3b1 Mon Sep 17 00:00:00 2001 From: Hema Kanamarlapudi Date: Mon, 28 Aug 2023 23:03:06 +0530 Subject: [PATCH 2/4] added project --- Projects/hema_kanamarlapudi/index.html | 57 ++++++++++++ Projects/hema_kanamarlapudi/style.css | 123 +++++++++++++++++++++++++ 2 files changed, 180 insertions(+) create mode 100644 Projects/hema_kanamarlapudi/index.html create mode 100644 Projects/hema_kanamarlapudi/style.css diff --git a/Projects/hema_kanamarlapudi/index.html b/Projects/hema_kanamarlapudi/index.html new file mode 100644 index 0000000..0cce03f --- /dev/null +++ b/Projects/hema_kanamarlapudi/index.html @@ -0,0 +1,57 @@ + + + + + + + Hema's portfolio + + + + + + +
+
+
+
+ +
+
+

About me

+

Lorem ipsum dolor sit amet consectetur adipisicing elit. Et aperiam, nemo dolore + recusandae esse voluptate quam consequuntur voluptatum suscipit debitis molestias, delectus + corrupti aliquam officia cumque nulla quasi, accusantium sequi.

+ +
+ + + +
+
+ + +
+
+ + + + + + \ No newline at end of file diff --git a/Projects/hema_kanamarlapudi/style.css b/Projects/hema_kanamarlapudi/style.css new file mode 100644 index 0000000..e832b0c --- /dev/null +++ b/Projects/hema_kanamarlapudi/style.css @@ -0,0 +1,123 @@ +*{ + margin: 0; + padding: 0; + font-family: 'Poppins',sans-serif; + box-sizing: border-box; +} + +body{ + background: black; + color: white; +} + +#header{ + width: 100%; + height: 100vh; + background-image: url(images/background.png); + background-size: cover; + background-position: center; +} + +.container{ + padding: 10px 10%; +} + +nav{ + display: flex; + align-items: center; + justify-content: space space-between; + flex-wrap: wrap; +} + +.logo{ + width:140px; +} + +nav ul li{ + display:inline-block; + list-style:none ; + margin: 10px 20px; +} + +nav ul li a{ + color: white; + text-decoration: none; + font-size: 18px; + position: relative; +} + +nav ul li a::after{ + content: ''; + width: 0; + height:3px; + background: rgb(0, 255, 51); + position: absolute; + left:0; + bottom:-6px; + transition: 0.1s; +} + +nav ul li a:hover::after{ + width: 100%; +} + +.header-text{ + margin-top:20%; + font-size: 30px; +} + +#about{ + padding: 80px 0; +} + +.row{ + display:flex; + justify-content:space-between; +} + +.col1{ + flex-basis: 35%; +} + +.col1 img{ + width:100%; + border-radius: 15px; +} + +.col2{ + flex-basis: 60%; +} + +.para{ + color:orange; +} + +.tabtitles{ + display: flex; + margin: 20px 0 40px; +} + +.tablinks{ + margin-right: 50px; + font-size: 18px; + font-weight: 500; + cursor: pointer; + position: relative; +} + +.tablinks::after{ + content: ''; + width: 0; + height:3px; + background: rgb(0, 255, 51); + position: absolute; + left:0; + bottom:-6px; + transition: 0.1s; +} + +.tablinks:hover::after{ + width: 100%; +} + + From 439143195f7f3adac52d04a9cb11053dfb38eeb2 Mon Sep 17 00:00:00 2001 From: Hema Kanamarlapudi Date: Mon, 28 Aug 2023 23:09:24 +0530 Subject: [PATCH 3/4] updated project --- Projects/hema_kanamarlapudi/index.html | 4 +--- Projects/hema_kanamarlapudi/style.css | 1 - 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/Projects/hema_kanamarlapudi/index.html b/Projects/hema_kanamarlapudi/index.html index 0cce03f..b3e53f2 100644 --- a/Projects/hema_kanamarlapudi/index.html +++ b/Projects/hema_kanamarlapudi/index.html @@ -31,7 +31,7 @@
- + image

About me

@@ -45,8 +45,6 @@

About me

- -
diff --git a/Projects/hema_kanamarlapudi/style.css b/Projects/hema_kanamarlapudi/style.css index e832b0c..f1a0e69 100644 --- a/Projects/hema_kanamarlapudi/style.css +++ b/Projects/hema_kanamarlapudi/style.css @@ -13,7 +13,6 @@ body{ #header{ width: 100%; height: 100vh; - background-image: url(images/background.png); background-size: cover; background-position: center; } From ba4bb0206c91b123c8c4885c39028a0a5fcf6487 Mon Sep 17 00:00:00 2001 From: Hema Kanamarlapudi Date: Mon, 28 Aug 2023 23:19:47 +0530 Subject: [PATCH 4/4] updated 2nd time --- Projects/hema_kanamarlapudi/index.html | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Projects/hema_kanamarlapudi/index.html b/Projects/hema_kanamarlapudi/index.html index b3e53f2..748a7e6 100644 --- a/Projects/hema_kanamarlapudi/index.html +++ b/Projects/hema_kanamarlapudi/index.html @@ -12,7 +12,6 @@