-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
77dd498
commit 61ea547
Showing
1 changed file
with
136 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,136 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>StreamTech Consulting - Live Stream Systems Experts</title> | ||
<style> | ||
body { | ||
font-family: Arial, sans-serif; | ||
line-height: 1.6; | ||
margin: 0; | ||
padding: 0; | ||
color: #333; | ||
} | ||
header { | ||
background-color: #2c3e50; | ||
color: #ecf0f1; | ||
text-align: center; | ||
padding: 1rem; | ||
} | ||
nav { | ||
background-color: #34495e; | ||
color: #ecf0f1; | ||
padding: 0.5rem; | ||
} | ||
nav ul { | ||
list-style-type: none; | ||
padding: 0; | ||
display: flex; | ||
justify-content: center; | ||
} | ||
nav ul li { | ||
margin: 0 1rem; | ||
} | ||
nav ul li a { | ||
color: #ecf0f1; | ||
text-decoration: none; | ||
} | ||
main { | ||
padding: 2rem; | ||
max-width: 800px; | ||
margin: 0 auto; | ||
} | ||
.hero { | ||
background-image: url('/api/placeholder/800/400'); | ||
background-size: cover; | ||
background-position: center; | ||
height: 400px; | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
color: #fff; | ||
text-align: center; | ||
} | ||
.hero h2 { | ||
font-size: 2.5rem; | ||
text-shadow: 2px 2px 4px rgba(0,0,0,0.5); | ||
} | ||
.services { | ||
display: flex; | ||
justify-content: space-between; | ||
flex-wrap: wrap; | ||
margin-top: 2rem; | ||
} | ||
.service { | ||
flex-basis: calc(33.33% - 1rem); | ||
margin-bottom: 2rem; | ||
text-align: center; | ||
} | ||
.service img { | ||
width: 100%; | ||
max-width: 200px; | ||
height: auto; | ||
} | ||
footer { | ||
background-color: #2c3e50; | ||
color: #ecf0f1; | ||
text-align: center; | ||
padding: 1rem; | ||
margin-top: 2rem; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<header> | ||
<h1>StreamTech Consulting</h1> | ||
<p>Your Live Stream Systems Experts</p> | ||
</header> | ||
<nav> | ||
<ul> | ||
<li><a href="#home">Home</a></li> | ||
<li><a href="#services">Services</a></li> | ||
<li><a href="#about">About</a></li> | ||
<li><a href="#contact">Contact</a></li> | ||
</ul> | ||
</nav> | ||
<main> | ||
<section id="home" class="hero"> | ||
<h2>Elevate Your Business with Live Streaming</h2> | ||
</section> | ||
<section id="services"> | ||
<h2>Our Services</h2> | ||
<div class="services"> | ||
<div class="service"> | ||
<img src="/api/placeholder/200/200" alt="Live Stream Setup"> | ||
<h3>Live Stream Setup</h3> | ||
<p>We'll help you choose and configure the right equipment for your streaming needs.</p> | ||
</div> | ||
<div class="service"> | ||
<img src="/api/placeholder/200/200" alt="Content Strategy"> | ||
<h3>Content Strategy</h3> | ||
<p>Develop engaging content strategies to maximize your live streaming impact.</p> | ||
</div> | ||
<div class="service"> | ||
<img src="/api/placeholder/200/200" alt="Technical Support"> | ||
<h3>Technical Support</h3> | ||
<p>On-call support to ensure your streams run smoothly and professionally.</p> | ||
</div> | ||
</div> | ||
</section> | ||
<section id="about"> | ||
<h2>About Us</h2> | ||
<p>StreamTech Consulting is a team of passionate live streaming experts dedicated to helping businesses and individuals harness the power of live video for marketing and engagement. With years of experience in the field, we provide top-notch technical consulting and support to ensure your live streaming success.</p> | ||
</section> | ||
<section id="contact"> | ||
<h2>Contact Us</h2> | ||
<p>Ready to take your live streaming to the next level? Get in touch with us today!</p> | ||
<p>Email: [email protected]</p> | ||
<p>Phone: (555) 123-4567</p> | ||
</section> | ||
</main> | ||
<footer> | ||
<p>© 2024 StreamTech Consulting. All rights reserved.</p> | ||
</footer> | ||
</body> | ||
</html> |