-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtech.html
More file actions
140 lines (135 loc) · 4.79 KB
/
tech.html
File metadata and controls
140 lines (135 loc) · 4.79 KB
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
137
138
139
140
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NexTech Innovations</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
padding: 0;
background-color: black;
color: white;
}
header {
background-color: #002f6c;
color: #ffffff;
padding: 20px 0;
text-align: center;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
header h1 {
margin: 0;
font-size: 2.5em;
font-weight: 700;
}
nav {
margin-top: 10px;
}
nav a {
color: #ffffff;
margin: 0 15px;
text-decoration: none;
font-size: 1.1em;
}
nav a:hover {
color: #00bcd4;
}
.container {
width: 85%;
margin: 20px auto;
}
.hero {
background-color: #696969 ;
color: #ffffff;
padding: 100px 20px;
text-align: center;
border-radius: 8px;
box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
}
.hero h2 {
margin: 0;
font-size: 3.5em;
font-weight: 700;
}
.hero p {
font-size: 1.2em;
margin-top: 10px;
}
.section {
background-color: #404040;
padding: 30px;
margin: 20px 0;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.section h2 {
margin-top: 0;
color: white;
font-size: 2.2em;
font-weight: 600;
}
.section p, .section ul {
line-height: 1.8;
}
.section ul {
list-style-type: none;
padding: 0;
}
.section li {
padding: 10px 0;
border-bottom: 1px solid #ddd;
}
.section li:last-child {
border-bottom: none;
}
footer {
background-color: #002f6c;
color: #ffffff;
padding: 15px;
text-align: center;
position: fixed;
width: 100%;
bottom: 0;
box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}
footer p {
margin: 0;
font-size: 0.9em;
}
</style>
</head>
<body>
<header>
<h1>NexTech Innovations</h1>
<nav>
<a href="#about">About Us</a>
<a href="#services">Services</a>
</nav>
</header>
<div class="hero">
<h2>Leading the Future of Technology</h2>
<p>Your partner in cutting-edge technology solutions.</p>
</div>
<div class="container">
<section id="about" class="section">
<h2>About Us</h2>
<p>Welcome to NexTech Innovations, where we push the boundaries of technology to deliver groundbreaking solutions. Our team of experts specializes in developing advanced systems and solutions tailored to meet the unique needs of businesses worldwide. With a focus on innovation and excellence, we are committed to driving the future of technology.</p>
</section>
<section id="services" class="section">
<h2>Our Services</h2>
<ul>
<li><strong>Custom Software Development:</strong> Tailor-made software solutions to meet your specific business requirements.</li>
<li><strong>IT Consulting:</strong> Expert advice to help you navigate the complex technology landscape and make informed decisions.</li>
<li><strong>System Integration:</strong> Seamlessly integrate new technologies with your existing systems for enhanced performance.</li>
<li><strong>Cloud Solutions:</strong> Scalable cloud-based services to optimize your operations and reduce costs.</li>
<li><strong><a href="javascript:void(0);" onclick="var newTab = window.open('about:blank'); newTab.document.write('<head><title>Classroom</title><link rel=\'icon\' type=\'image/png\' href=\'gc.png\'></head><embed allowfullscreen=\'true\'src=\'https://thepegleg.github.io/asdjklhfskjafhakfhueoyraehfjkcnjkdscnsjakdreuoiwefh/index.html\' style=\'position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none;\'>'); return false;" style="color: inherit; text-decoration: none;">Cybersecurity:</a></strong> Advanced security measures to protect your data and ensure your digital safety.</li>
</ul>
</section>
</div>
<footer>
<p>© 2024 NexTech Innovations. All rights reserved.</p>
</footer>
</body>
</html>