From 025e0a289b4ae89a04debe406b3e0a4f85bf901d Mon Sep 17 00:00:00 2001 From: T Mohamed Yaser <140265777+Yaser-123@users.noreply.github.com> Date: Thu, 20 Jun 2024 21:33:10 +0530 Subject: [PATCH 1/2] Update index.html Improved UI/UX added Contact us --- index.html | 29 ++++++++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index 7c198d5..b486ef0 100644 --- a/index.html +++ b/index.html @@ -6,6 +6,7 @@ Experience Certificate Generator +
@@ -38,7 +39,33 @@

Experience Certificate Generator

+ +
+
+
+
+

Contact Me

+ + + +
+
+
+ + + + +
+ +
+
+
- \ No newline at end of file + From e4d0a9cd0ee480373e79e14ca11ce4601d056b60 Mon Sep 17 00:00:00 2001 From: T Mohamed Yaser <140265777+Yaser-123@users.noreply.github.com> Date: Thu, 20 Jun 2024 21:34:09 +0530 Subject: [PATCH 2/2] Update styles.css Improved UI/UX and added appealing styling to flex-box --- styles.css | 73 +++++++++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 70 insertions(+), 3 deletions(-) diff --git a/styles.css b/styles.css index 7abe665..387f18b 100644 --- a/styles.css +++ b/styles.css @@ -1,6 +1,6 @@ body { font-family: Arial, sans-serif; - background: #f0f0f0; + background: yellowgreen; margin: 0; padding: 0; display: flex; @@ -46,7 +46,7 @@ h1 { .form-group input { width: calc(100% - 20px); padding: 8px 10px; - border: 1px solid #ddd; + border: 1px solid mediumorchid; border-radius: 4px; font-size: 16px; outline: none; @@ -58,7 +58,7 @@ h1 { } button { - background: #28a745; + background: blue; color: #fff; border: none; padding: 10px 15px; @@ -71,3 +71,70 @@ button { button:hover { background: #218838; } + +#contact{ + padding: 40px; + align-items: center; + text-align: center; +} + +.contact-left{ + flex-basis: 35%; +} +.contact-right{ + flex-basis: 60%; +} +.contact-left p{ + margin-top: 30px; +} +.contact-left p i{ + color: #ff004f; + margin-right: 15px; + font-size: 25px; +} +.social-icon{ + margin-top: 30px; +} +.social-icon a{ + text-decoration: none; + font-size: 30px; + margin-right: 15px; + color: blue; + display: inline-block; + transition: transform 0.5s; +} +.social-icon a:hover{ + color: rgb(36, 211, 59); + transform: translateY(-5px); +} +.btn.btn2{ + display: inline-block; + background: #ff004f; + border-radius: 14px; + color: white; +} + +.btn.btn2:hover{ + background-color: #218838; +} + +.contact-right form{ + width: 350px; +} +form input, form textarea{ + width: 100%; + border: 0; + outline: none; + padding: 15px; + margin: 15px 0; + color: black; + font-size: 18px; + border-radius: 6px; + border: 1px solid mediumorchid; +} +form .btn2{ + padding: 14px 60px; + font-size: 18px; + margin-top: 20px; + cursor: pointer; +}