From aa636fa4b9e174d609e317745c1e72f9098d2813 Mon Sep 17 00:00:00 2001 From: Saidurga Date: Tue, 30 Sep 2025 12:17:48 +0530 Subject: [PATCH 1/4] durga-html-advancedtags --- css/advanced/Assignment-1/index.html | 0 css/advanced/Assignment-1/style.css | 69 +++++++++++++++++++++++ css/advanced/Assignment-2/animations.html | 60 ++++++++++++++++++++ 3 files changed, 129 insertions(+) create mode 100644 css/advanced/Assignment-1/index.html create mode 100644 css/advanced/Assignment-1/style.css create mode 100644 css/advanced/Assignment-2/animations.html diff --git a/css/advanced/Assignment-1/index.html b/css/advanced/Assignment-1/index.html new file mode 100644 index 00000000..e69de29b diff --git a/css/advanced/Assignment-1/style.css b/css/advanced/Assignment-1/style.css new file mode 100644 index 00000000..3e7719f6 --- /dev/null +++ b/css/advanced/Assignment-1/style.css @@ -0,0 +1,69 @@ + +* { + margin: 0; + padding: 0; + box-sizing: border-box; +} + +body { + font-family: Arial, sans-serif; + line-height: 1.6; +} + +header { + background: #0d0a99; + color: #fff; + padding: 20px; + text-align: center; +} + +nav ul { + list-style: none; + display: flex; + justify-content: center; + gap: 20px; + margin-top: 10px; +} + +nav a { + color: #fff; + text-decoration: none; +} + +main { + display: flex; + padding: 20px; + gap: 20px; +} + +article { + flex: 3; + background: #2c13a8; + color: #fff; + padding: 20px; + border-radius: 8px; +} + +aside { + flex: 1; + background: #4d119b; + color: #fff; + padding: 20px; + border-radius: 8px; +} + +footer { + background: #3f12ba; + color: #fff; + text-align: center; + padding: 15px; + margin-top: 20px; + bottom: auto; +} + +@media (max-width: 768px) { + main { + flex-direction: column; + flex:1; + } +} diff --git a/css/advanced/Assignment-2/animations.html b/css/advanced/Assignment-2/animations.html new file mode 100644 index 00000000..45bcfc50 --- /dev/null +++ b/css/advanced/Assignment-2/animations.html @@ -0,0 +1,60 @@ + + + + + + CSS Animation & Media Queries + + + +
Hello Guys..!
+ + From 681814c0c61a0c17eec8dec160cccaf3b4666f2e Mon Sep 17 00:00:00 2001 From: Saidurga Date: Tue, 30 Sep 2025 21:45:40 +0530 Subject: [PATCH 2/4] durga-html-project --- html/5-projects/Project-1/semantics.html | 54 +++++++++++ html/5-projects/Project-1/style.css | 115 +++++++++++++++++++++++ 2 files changed, 169 insertions(+) create mode 100644 html/5-projects/Project-1/semantics.html create mode 100644 html/5-projects/Project-1/style.css diff --git a/html/5-projects/Project-1/semantics.html b/html/5-projects/Project-1/semantics.html new file mode 100644 index 00000000..43b149ca --- /dev/null +++ b/html/5-projects/Project-1/semantics.html @@ -0,0 +1,54 @@ + + + + + + My personal Homepage + + + +
+

Sai Durga

+

Solutions Engineer

+
+
+

About Me

+

Enthusiastic web developer

+
+
+

Educational Details

+
    +
  • Graduated in Sreenidhi institute of science and technologt (2021-2025)
  • +
  • Narayana junior college (2019-2021)
  • +
+
+
+

Skills

+
    +
  • Html, CSS, JavaScript
  • +
  • Java, Springboot framework, python, Sql
  • +
+
+
+

Contact form

+
+ +

+ + +

+ + +

+ + +

+ + +

+ +
+
+
© 2025 All rights reserved
+ + \ No newline at end of file diff --git a/html/5-projects/Project-1/style.css b/html/5-projects/Project-1/style.css new file mode 100644 index 00000000..dba4f84e --- /dev/null +++ b/html/5-projects/Project-1/style.css @@ -0,0 +1,115 @@ + +body { + margin: 0; + font-family: Arial, Helvetica, sans-serif; + line-height: 1.6; + color: #333; + background-color: #f9f9f9; +} + +h1, h2 { + color: #2c3e50; +} + +a { + color: #3498db; + text-decoration: none; +} + +a:hover { + text-decoration: underline; +} + +header { + background: #3498db; + color: #fff; + padding: 2rem; + text-align: center; +} + +header h1 { + margin: 0; + font-size: 2.5rem; +} + +header p { + margin-top: 0.5rem; + font-size: 1.2rem; +} + + +section { + padding: 2rem; + max-width: 800px; + margin: auto; + background: #fff; + margin-bottom: 1.5rem; + border-radius: 10px; + box-shadow: 0 2px 6px rgba(0,0,0,0.1); +} + +section h2 { + border-bottom: 2px solid #3498db; + padding-bottom: 0.5rem; + margin-bottom: 1rem; +} + +ul { + list-style-type: square; + margin-left: 1.5rem; +} + + +form { + display: flex; + flex-direction: column; +} + +label { + margin-top: 0.5rem; + font-weight: bold; +} + +input, text, button { + margin-top: 0.3rem; + padding: 0.7rem; + border: 1px solid #ccc; + border-radius: 5px; + font-size: 1rem; +} + +text { + resize: vertical; +} + +button { + margin-top: 1rem; + background: #3498db; + color: #fff; + border: none; + cursor: pointer; + transition: background 0.3s ease; +} + +button:hover { + background: #2980b9; +} + + +footer { + text-align: center; + padding: 1rem; + background: #2c3e50; + color: #fff; +} + + +@media (max-width: 600px) { + header h1 { + font-size: 2rem; + } + + section { + padding: 1rem; + } +} From 3bb2504ac1c727a7bb2db2af7254c0f411cbc786 Mon Sep 17 00:00:00 2001 From: Saidurga Date: Tue, 30 Sep 2025 22:31:47 +0530 Subject: [PATCH 3/4] durga-html-project --- html/5-projects/Project-2/productlanding.html | 83 +++++++++++++++++++ 1 file changed, 83 insertions(+) create mode 100644 html/5-projects/Project-2/productlanding.html diff --git a/html/5-projects/Project-2/productlanding.html b/html/5-projects/Project-2/productlanding.html new file mode 100644 index 00000000..6f0d3fc9 --- /dev/null +++ b/html/5-projects/Project-2/productlanding.html @@ -0,0 +1,83 @@ + + + + + + Product Landing Page + + + + + +
+

SuperProduct 2025

+

The ultimate solution for productivity and efficiency

+
+ +
+

Features

+

SuperProduct 2025 is designed to simplify your workflow and maximize productivity. With cutting-edge tools and an intuitive interface, you’ll accomplish tasks faster and smarter.

+
    +
  • Easy-to-use dashboard
  • +
  • Cross-platform compatibility
  • +
  • Advanced analytics and reporting
  • +
  • 24/7 customer support
  • +
+
+ +
+

See SuperProduct in Action

+ +
+ +
+

Choose Your Plan

+ + + + + + + + + + + + + + + + + + + + + + + + + + +
SuperProduct Pricing Plans
PlanPriceFeatures
Basic$10/monthCore features, Email support
Pro$25/monthAll Basic features + Advanced tools + Priority support
Enterprise$50/monthAll Pro features + Custom integrations + Dedicated support
+
+ +
+

Contact Us

+

Email: support@superproduct.com

+

Phone: +1 234 567 890

+
+ +
+

© 2025 SuperProduct Inc. All rights reserved.

+
+ + + From 15f8934211e5468cb46cc6d238fc0ce4cd9426e4 Mon Sep 17 00:00:00 2001 From: Saidurga Date: Tue, 30 Sep 2025 22:35:26 +0530 Subject: [PATCH 4/4] durga-html-project --- html/5-projects/index.html | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/html/5-projects/index.html b/html/5-projects/index.html index c465d36d..0a5c6fc2 100644 --- a/html/5-projects/index.html +++ b/html/5-projects/index.html @@ -195,6 +195,10 @@

Assignments

Supriya +
+ SaiDurga + +