-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
136 lines (136 loc) · 4.39 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
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>