diff --git a/New Screen.jpeg b/New Screen.jpeg new file mode 100644 index 0000000..5ef9f99 Binary files /dev/null and b/New Screen.jpeg differ diff --git a/images/socialmediapic.jpg b/images/socialmediapic.jpg new file mode 100644 index 0000000..fea7022 Binary files /dev/null and b/images/socialmediapic.jpg differ diff --git a/index.html b/index.html index 44d3235..261868b 100644 --- a/index.html +++ b/index.html @@ -1,3 +1,60 @@ -test.... - -image \ No newline at end of file + + + + + + TrendMiner Landing Page + + + + + + + +
+ + +
+ +
+

Discover the Latest Trends in Social Media

+

Unleash the power of data to stay ahead in the digital world with TrendMiner.

+ analytics graphic +
+ +
+
+

Real-time Analytics

+

Access up-to-the-minute data to monitor emerging trends and capitalize on them instantly.

+
+
+

Comprehensive Reports

+

Receive detailed insights with our in-depth reports, tailored to your business.

+
+
+

User-friendly Interface

+

Navigate with ease using our intuitive and modern interface designed for all.

+
+
+ +
+ Get Started Now +
+ +
+ + +
+ + + + + + diff --git a/script.js b/script.js index e69de29..cc9852e 100644 --- a/script.js +++ b/script.js @@ -0,0 +1,3 @@ +// script.js - add any JS interactions later +console.log("TrendMiner landing page loaded."); + diff --git a/socialmediapic.jpg b/socialmediapic.jpg new file mode 100644 index 0000000..fea7022 Binary files /dev/null and b/socialmediapic.jpg differ diff --git a/style.css b/style.css index 8b13789..ad08507 100644 --- a/style.css +++ b/style.css @@ -1 +1,30 @@ +/* style.css - TrendMiner Landing Page */ +* { margin: 0; padding: 0; box-sizing: border-box; } +body { font-family: "Poppins", sans-serif; line-height: 1.6; color: #111; } +header { display: flex; justify-content: space-between; align-items: center; padding: 22px 70px; } +nav a { text-decoration: none; color: #111; margin-left: 30px; font-weight: 500; } +.logo { font-size: 20px; font-weight: 600; display: flex; align-items: center; gap: 8px; } +.logo span { color: #6366F1; font-weight: 700; } +.hero { text-align: center; padding: 60px 90px; } +.hero h1 { font-size: 32px; font-weight: 700; margin-bottom: 16px; } +.hero p { font-size: 16px; color: #555; max-width: 650px; margin: 0 auto 40px auto; } +.hero img { max-width: 700px; width: 100%; margin: 0 auto; } +.features { display: flex; justify-content: center; gap: 30px; padding: 40px 90px; } +.feature-card { background: #fff; padding: 24px; border-radius: 12px; width: 300px; box-shadow: 0 6px 18px rgba(0,0,0,0.08); } +.feature-card h3 { font-size: 18px; margin-bottom: 10px; } +.feature-card p { font-size: 14px; color: #666; } +.cta-btn { background: #6366F1; padding: 14px 28px; color: #fff; border-radius: 8px; text-decoration: none; font-weight: 600; display: inline-block; margin: 30px auto; } +.signup-section { background: white; max-width: 550px; margin: 50px auto; padding: 28px; border-radius: 14px; box-shadow: 0 6px 18px rgba(0,0,0,0.08); text-align: center; } +.signup-section input { width: 100%; padding: 14px; border: 1px solid #ddd; border-radius: 8px; margin-bottom: 20px; font-size: 15px; } +.signup-btn { width: 100%; padding: 14px; border: 0; border-radius: 8px; background: #F63CA9; color: #fff; font-size: 16px; font-weight: 600; cursor: pointer; } +footer { margin-top: 80px; background: #F1F5FE; padding: 40px 0; text-align: center; color: #555; font-size: 14px; } +.social { margin-bottom: 12px; } +.social i { margin: 0 8px; cursor: pointer; } +/* Responsiveness */ +@media(max-width: 900px) { + .features { flex-direction: column; align-items: center; } + header { padding: 22px 30px; } + nav a { margin-left: 15px; } +} +