From cb725f9ab3efe4b1351c1cf2857be04e5dc07b8d Mon Sep 17 00:00:00 2001
From: T Mohamed Yaser <140265777+Yaser-123@users.noreply.github.com>
Date: Thu, 20 Jun 2024 20:26:04 +0530
Subject: [PATCH 1/4] Creating Contact us form
---
Contact us/contact.html | 37 +++++++++++++++++++
Contact us/style.css | 82 +++++++++++++++++++++++++++++++++++++++++
2 files changed, 119 insertions(+)
create mode 100644 Contact us/contact.html
create mode 100644 Contact us/style.css
diff --git a/Contact us/contact.html b/Contact us/contact.html
new file mode 100644
index 0000000..b0b90e2
--- /dev/null
+++ b/Contact us/contact.html
@@ -0,0 +1,37 @@
+
+
+
+
+
+ Document
+
+
+
+
+
From 0c27a2f41f81c6ea12e7ae26d8c24c6d8cf0d92d Mon Sep 17 00:00:00 2001
From: T Mohamed Yaser <140265777+Yaser-123@users.noreply.github.com>
Date: Thu, 20 Jun 2024 22:56:50 +0530
Subject: [PATCH 4/4] Update style.css
Changed to light theme
---
Contact us/style.css | 18 +++++++++++-------
1 file changed, 11 insertions(+), 7 deletions(-)
diff --git a/Contact us/style.css b/Contact us/style.css
index 84aa0a7..a657a25 100644
--- a/Contact us/style.css
+++ b/Contact us/style.css
@@ -8,8 +8,8 @@ html{
scroll-behavior: smooth;
}
body{
- background: #080808;
- color: #fff;
+ background: lightcyan;
+ color: black;
}
.contact-left{
@@ -35,20 +35,24 @@ body{
text-decoration: none;
font-size: 30px;
margin-right: 15px;
- color: #ababab;
+ color: blue;
display: inline-block;
transition: transform 0.5s;
}
.social-icon a:hover{
- color: #ff004f;
+ color: yellowgreen;
transform: translateY(-5px);
}
.btn.btn2{
display: inline-block;
- background: #ff004f;
+ background: blueviolet;
border-radius: 14px;
color: white;
}
+.btn.btn2:hover{
+ background-color: #ff004f;
+}
+
.contact-right form{
width: 100%;
}
@@ -56,7 +60,7 @@ form input, form textarea{
width: 100%;
border: 0;
outline: none;
- background: #262626;
+ background: rgb(232, 210, 238);
padding: 15px;
margin: 15px 0;
color: #fff;
@@ -79,4 +83,4 @@ form .btn2{
}
.copyright i{
color: #ff004f;
-}
\ No newline at end of file
+}